什么是“ spring-boot-starter”jar?
在Spring Boot中,模式上有一些jar spring-boot-starter
。所有这些jar都不包含任何包装。它们有什么用?
在Maven POM中,添加了以下依赖项:
- org.springframework.boot:spring-boot-starter-web
- org.springframework.boot:spring-boot-starter-actuator
- org.springframework.boot:spring-boot-starter-security
我实际上需要使用哪些Spring Boot jar来使用这些jar中的功能?我的项目没有任何依赖项管理。我的项目是使用Spring
Security的Spring MVC应用程序。
回答:
这些依赖关系旨在为具有所有 的即席骨架项目提供统一的条目。
通常应从项目描述符( pom.xml )继承它们,以便获得具有配置版本的所有父依赖项。开发人员方面无需再承担其他负担:
入门POM是可以在应用程序中包括的一组便捷的依赖项描述符。您可以一站式购买所需的所有Spring和相关技术,而不必遍历示例代码并复制依赖项描述符的粘贴负载。例如,如果您想开始使用Spring和JPA进行数据库访问,只需在项目中包括spring-
boot-starter-data-jpa依赖项就可以了。
参考, 。
回答:
这些POM可用于合成可用于某种项目的依赖项,例如对于简单的Spring MVC项目,将包含以下工件(从 spring-boot-starter ,
spring-boot-starter- web ,分别是 spring-boot-starter-security ):
- Spring Boot工件:
- org.springframework.boot:spring-boot
- org.springframework.boot:spring-boot-autoconfigure
- org.springframework.boot:spring-boot-starter-logging
- Spring Core,Web,MVC,安全工件:
- org.springframework:spring-core
- org.springframework:spring-web
- org.springframework:spring-webmvc
- org.springframework:spring-beans
- org.springframework:spring-context
- org.springframework:spring-expression
- org.springframework:spring-aop
- org.springframework.security:spring-security-config
- org.springframework.security:spring-security-web
- org.hibernate:hibernate验证器
- com.fasterxml.jackson.core:jackson-databind
可以在maven中央存储库中无缝浏览导航结果的工件。
请注意,这可能不是完整的参考列表,因为某些组件可能会出错,因此工件可能会被更新。
以上是 什么是“ spring-boot-starter”jar? 的全部内容, 来源链接: utcz.com/qa/427326.html