springBoot
Posted Jack
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springBoot相关的知识,希望对你有一定的参考价值。
定义: 遵循约定 优于配置原则,以精简配置降低开发成本为目的,简化了配置的spring。
作用:简化编码 简化配置 简化部署(内置了tomcat容器) 简化监控
软件环境 : 推荐 jdk1.8
spring 4.3.10
maven 3.2
gradle2.9
项目结构: pom文件
父级依赖
spring-boot-starter-web
spring-boot-starter-test
@SpringBootApplication
启动类:项目名称—+Application
作用:启动项目,启动自动配置
@SpringBootConfiguration 可以把
项目名称—+Application 这个类作为一个容器
@EnableAutoConfiguration 启动spring自动配置
@ComponentScan 对项目中所有注解进行扫描
@RestController (spring 4.0)作用是将返回的类容之间在浏览器的body中展示,相当于在返回方法上加@responseBody
以上是关于springBoot的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot中表单提交报错“Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported“(代码片段
Spring boot:thymeleaf 没有正确渲染片段