Spring Boot配置最少

时间:2017-12-27 16:09:25

标签: java spring-boot testng

Spring Boot默认配置了许多依赖项,如Web / DB / Security和许多其他东西,如嵌入式Tomcat。

在大多数项目中,我只需要依赖注入,读取application.properties参数和TestNG支持。没别了。

问题是如何以极少的配置获得Spring Boot?

1 个答案:

答案 0 :(得分:6)

如果您需要生成具有最低要求的Springboot配置,请访问此链接http://start.spring.io/

enter image description here

如您所见,您可以选择项目的依赖项。

您可以切换到包含大量选项的完整表单:

enter image description here

并选择依赖项:

enter image description here