1. 程式人生 > >Springboot基礎知識

Springboot基礎知識

1、@RestController註解

  • Spring4之後新加入的註解,@RestController是@ResponseBody和@Controller的組合註解。(返回json需要@ResponseBody和@Controller配合)
  • pom.xml依賴
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>
  • 在POM中加入spring-boot-starter-web依賴, @RestController還是不能用的解決方法:手動匯入包。
import org.springframework.web.bind.annotation.RestController;