Spring Boot MAVEN
程序员文章站
2022-04-23 11:57:17
...
<!-- Spring Boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.0.4.RELEASE</version>
</dependency>
<!-- Spring Boot test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>2.0.4.RELEASE</version>
<scope>test</scope>
</dependency>
推荐阅读
-
Spring Cloud中各组件超时总结
-
spring boot使用properties定义短信模板的方法教程
-
Spring源码解密之默认标签的解析
-
Hibernate+Spring+Struts扩展Struts
-
spring boot使用thymeleaf为模板的基本步骤介绍
-
Spring Boot+Mybatis的整合过程
-
myeclipse创建spring配置文件正确却显示红叉该怎么办?
-
Spring Boot 编写Servlet、Filter、Listener、Interceptor的方法
-
Spring Cloud Gateway入门解读
-
Spring Boot容器加载时执行特定操作(推荐)