入门程序
- 创建表现层的package文件web,由于启动类的注解@SpringBootApplication内嵌了包扫描注解,因此,需要与启动在同一级目录下,否则在表现层使用注解会无效
- 编写表现层代码
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";
}
}
- 运行结果
PS:
- 关于@Controller和@RestController的区别
前者是用于返回视图,需要配置试图解析器;后者是@Controller和@ResponseBody的结合,用于返回字符串或者json格式的数据。