spring-boot-starter-parent 在 pom 文件中到底做了什么?

问题描述 投票:0回答:5

我正在开发一个项目,它不是Spring boot,也是spring mvc。我的意思是我的项目中没有这个类:

@SpringBootApplication
public class Application extends SpringBootServletInitializer {

    public static void main(String[] args) {           
      SpringApplication.run(Application.class, args);
    }

我有这三个类作为spring mvc的配置文件:

@Import(WebSocketConfig.class)
@Configuration
@EnableWebMvc
@ComponentScan(basePackages = "......")

public class MainConfiguration extends WebMvcConfigurerAdapter {
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/Content/**")
                .addResourceLocations("/Content/");
        registry.addResourceHandler("/Scripts/**")
                .addResourceLocations("/Scripts/");


    }

    @Bean
    public InternalResourceViewResolver viewResolver() {
        InternalResourceViewResolver viewResolver
                = new InternalResourceViewResolver();
        viewResolver.setPrefix("/");
        viewResolver.setSuffix(".jsp");
        return viewResolver;
    }

}

第二:

public class MainInitializer extends AbstractAnnotationConfigDispatcherServletInitializer {
    public static HashMap<String, String> response_code = new HashMap<String, String>();


    @Override
    protected Class<?>[] getRootConfigClasses() {
        return new Class[] { MainConfiguration.class,
        WebSocketConfig.class};
    }

    @Override
    protected Class<?>[] getServletConfigClasses() {
        return null;
    }

    @Override
    protected String[] getServletMappings() {
        return new String[] { "/" };
    }

    @Override
    public void onStartup(ServletContext servletContext) throws ServletException {
        super.onStartup(servletContext);
        Security.addProvider(new BouncyCastleProvider());
        servletContext.addListener(new MainContextListener());
        System.out.println("MainInitializer.onStartup()");
}}

第三,

public class MainContextListener implements ServletContextListener {

    public void contextInitialized(ServletContextEvent servletContextEvent) {
        System.out.println("Context Initialized");
        Security.addProvider(new BouncyCastleProvider());
    }

    public void contextDestroyed(ServletContextEvent servletContextEvent) {
        System.out.println("Shutting down!");
    }
}

有一个控制器和jsp文件,我已将其配置为在tomcat网络服务器上运行,对我来说奇怪的是,当我将这段代码添加到我的pom中时,index.jsp将准确地出现在浏览器中,但是当我删除时它给我的控制器提供了 404 not found url 。为什么我的项目不是 Spring Boot 项目,需要 Spring Boot Starter 父级?我认为下面的代码与 spring boot 相关,因为我的项目不是 spring boot 而是 spring mvc,所以不需要它。但是如果不在 pom 中添加此代码,就会出现问题:

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.1.RELEASE</version>
    </parent>
java spring maven spring-mvc spring-boot
5个回答
7
投票

Spring Boot 提供了许多“Starters”,可让您将 jar 添加到您的应用程序中 类路径。对于前。 spring-boot-starter-security、spring-boot-starter-web 等。 “spring-boot-starter-parent”是一个特殊的启动器,提供有用的 Maven 默认值,即它添加所有必需的 jar 和其他东西 自动地。它还提供了一个依赖管理部分,以便您 可以省略您在 pom.xml 中使用的依赖项的版本标签。对于前。 假设你想使用 Spring Boot 创建 Web 应用程序,所以你需要 添加以下内容。

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>

现在请注意,标签被省略。所以最终 “spring-boot-starter-parent”默认添加了很多东西,所以我们不需要担心这些事情。


5
投票

编辑:另请参阅官方文档

https://docs.spring.io/spring-boot/docs/current/reference/html/getting-started.html#getting-started.first-application.dependency

它为CHILD POM

提供了通用配置
的地方。 例如

Dependencies
&
Properties

对于

e.g.
这是父 POM 配置
1.4.2.RELEASE
spring-boot-dependencies
这是
spring-boot-starter-parent

的父级
<properties>
    <activemq.version>5.13.4</activemq.version>
    <antlr2.version>2.7.7</antlr2.version>
    <appengine.version>1.9.44</appengine.version>
    <artemis.version>1.3.0</artemis.version>
    <aspectj.version>1.8.9</aspectj.version>
    <assertj.version>2.5.0</assertj.version>
    <atomikos.version>3.9.3</atomikos.version>
    <bitronix.version>2.1.4</bitronix.version>
    <caffeine.version>2.3.4</caffeine.version>

child POM
s

的共同属性
<dependencyManagement>
    <dependencies>
        <!-- Spring Boot -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot</artifactId>
            <version>1.4.2.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot</artifactId>
            <type>test-jar</type>
            <version>1.4.2.RELEASE</version>
        </dependency>
        <dependency>

孩子们的常见依赖关系


1
投票

如果您可以提供更多有关您的 pom 完整性的信息,我们可以进一步了解并为您提供更多帮助。

另一方面,父 pom spring-boot-starter-parent 包含完整的依赖项(mvc、cache、jpa)和公共属性,以保持依赖项版本的良好一致性,以便在您的项目或/和子模块中使用.

基本上,您可以根据您的需要在 pom.xml 中添加一些启动器(web、jpa、batch...) 对于您的示例,您只需将启动器 mvc 添加到 pom.xml 中,而不添加其他依赖项,因此您的 pom.xml 可以像这样:

 <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.9.RELEASE</version>
</parent>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
</dependencies>

<properties>
    <java.version>1.8</java.version>
</properties>


<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>

0
投票

对我来说

spring-boot-starter-parent
的主要特点是它提供了兼容版本的依赖项。

很难说没有完整的 pom 会发生什么,但我可以假设你的 pom 中的依赖项存在一些冲突,并且通过添加

spring-boot-starter-parent
来修复它。


0
投票

spring-boot-starter-parent 项目被设计为一个独特的启动项目,为我们的应用程序提供预设配置和全面的依赖关系树。它确保所有依赖项都是版本兼容的,从而消除了我们手动指定版本的需要。

© www.soinside.com 2019 - 2024. All rights reserved.