Springboot基础知识
Posted 马非白即黑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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;
以上是关于Springboot基础知识的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot启动报错“Consider defining a bean of type ‘xxx.mapper.UserMapper‘ in your configuration.“(代码片段
全栈编程系列SpringBoot整合Shiro(含KickoutSessionControlFilter并发在线人数控制以及不生效问题配置启动异常No SecurityManager...)(代码片段
SpringBoot中表单提交报错“Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported“(代码片段
Spring boot:thymeleaf 没有正确渲染片段