为什么Spring Boot starters JAR中没有Java类?

时间:2018-03-15 08:41:25

标签: spring spring-mvc spring-boot

enter image description here

在springboot 2.0上我想知道为什么春天当局会这样做?

spring-boot-starter-jdbc-2.0.0.jar为什么不满足????

1 个答案:

答案 0 :(得分:0)

这是故意的。 自动配置的代码包含在spring-boot模块中; Spring Boot starters是“只是”POM,带来所有依赖项,将触发该用例的自动配置。

第三方启动者(即由社区维护)也可以发送自动配置代码。

您可以详细了解how to create your own starter and why they're structured like this in the reference documentation