SpringBoot入门程序

入门程序

  1. 创建表现层的package文件web,由于启动类的注解@SpringBootApplication内嵌了包扫描注解,因此,需要与启动在同一级目录下,否则在表现层使用注解会无效
    SpringBoot入门程序_第1张图片
  2. 编写表现层代码
package com.cax.SpringBootDemo.web;


import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;


@RestController
public class HelloController {

    @RequestMapping(value = "/say")
    public String say(){
        return "Hello SpringBoot";
    }
}

  1. 运行结果
    SpringBoot入门程序_第2张图片

PS:

  1. 关于@Controller和@RestController的区别

前者是用于返回视图,需要配置试图解析器;后者是@Controller和@ResponseBody的结合,用于返回字符串或者json格式的数据。

你可能感兴趣的:(SpringBoot)