SpringBoot的基础搭建

SpringBoot的基础搭建 我又换公司了,无奈,今天一来下午项目经理让我搭建一个SpringBoot+mybatis+redis+quartz的框架,第一次真正意义上的一个人搭建,下面就是我自己搭建的springBoot框架的过程啦!
pom依赖添加

org.springframework.boot spring-boot-starter-parent 2.1.3.RELEASE

org.springframework.boot spring-boot-starter-web

org.springframework.boot spring-boot-maven-plugin

如果jdk版本不是1.6的话,需要配置下面那个
maven-compiler-plugin 1.8 1.8

application.yml配置 【SpringBoot的基础搭建】可配可不配(默认端口就是8080)
server: port: 8080 servlet: context-path: /wisdompark

启动类
@SpringBootApplication public class WisdomparkApplication { public static void main(String[] args){ SpringApplication.run(WisdomparkApplication.class, args); } }

测试
@RestController @RequestMapping("/test") public class TestController { @RequestMapping("/test") public String testRun(){ return "aa"; } }

    推荐阅读