更改 Spring 启动项目以继承自定义依赖管理

Change Spring Boot project to inherit custom dependency management

我有一个小的 Spring 引导应用程序,我必须对其进行调整才能使用自定义 parent。 Google 找到了很多如何将 迁移到 Spring 引导的示例,但是我不知道如何从 迁移 Spring 启动(我几乎不知道它是从什么开始的)。

原因

简而言之,此应用程序是作为一种 proof-of-concept 开发的,开发人员选择了 state-of-the-art 技术。

现在,这个应用程序将继续存在,我们需要将它集成到我们的框架中。作为一个 Maven 项目,它因此应该继承我们常见的 parent 之一,虽然这是我的理解 Spring Boot 项目应该继承自 Spring Boot starter parent POM.

[编辑] 我错了:可以 use Spring Boot without the parent POM。因此删除 Spring 引导不是义务,但是我们的 parent POM 包含它自己的版本管理,这迫使我覆盖启动器中包含的几个版本。

为什么我们需要继承我们的 parent

我们的所有项目都使用了一个企业框架。为了让事情变得更简单,我们在 parent POM 中管理许多框架的版本。在我们的小批量项目中,这些版本与 spring-boot-dependencies 中的版本冲突的一些示例:

我显然不能随意升级那些版本。请记住,这个框架在许多项目中使用,任何更改都可能产生严重且无法控制的后果。

其他上下文

objective 是为了得到一点Spring 批量申请。如果执行失败,它必须从命令行获取一些输入和 return 一个 12 退出代码。下面是启动器的核心,但我愿意接受任何更好的方法。

我们的批量启动器class

如果完全放弃 Spring 引导,我将需要调整此启动器 class 但是,主要用于 XML Spring 上下文,我觉得这有点很难。

// ...
import org.springframework.batch.core.ExitStatus;
import org.springframework.batch.core.JobExecution;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.ComponentScan;

@ComponentScan("my.config.package")
@EnableAutoConfiguration
public class Application {

    public static void main(String[] args) {
        // ...
        SpringApplication app = new SpringApplication(Application.class);
        app.setWebEnvironment(false);
        final Map<String, Object> maps = new HashMap<>();
        maps.put("input", "file:" + inputPath);
        app.setDefaultProperties(maps);
        ConfigurableApplicationContext ctx = app.run(args);

        JobExecutionSavingListener listener = ctx.getBean(JobExecutionSavingListener.class);

        final JobExecution jobExecution = listener.getJobExecution();
        if (jobExecution.getExitStatus() != ExitStatus.COMPLETED) {
            System.exit(12);
            return;
        }
        System.exit(0);
    }
}

问题

更改我的代码以适应我的 Spring 批处理应用程序以便我可以使用我自己的 Maven parent 的最佳方法是什么?

你仍然可以使用Spring启动来使用Spring批处理,其实这是推荐的做法。

此外,Spring 引导项目不需要从任何父 pom 继承,它们只需要在您的 pom 中包含对 spring 引导库的依赖。

这里有一个非常简单的例子:

Spring Batch example

您应该了解 "special" 关于 Spring 引导的唯一事情是它是为 运行 独立应用程序创建的,具有最少的 spring 配置,这与传统的 spring-web 被创建为 运行 在服务器上。

我还忘了补充一点,如果您觉得更舒服,您仍然可以使用 XML 配置而不是 Java 配置方法。

您可以使用 Spring 启动,无论是否使用 spring-boot-starter-parent 作为项目的 parent。 Spring 引导参考指南的 this section 对此进行了解释。

将此添加到您的项目 poms 仍然可以让您使用 Spring 引导并拥有自己的 parent。

<dependencyManagement>
     <dependencies>
        <dependency>
            <!-- Import dependency management from Spring Boot -->
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-dependencies</artifactId>
            <version>1.2.3.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

现在您可以定义自己的 parent。添加以下依赖项应该会为您提供 运行 Spring Batch.

所需的所有 jar
<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-batch</artifactId>
    </dependency>
</dependencies>

不(能够)使用 Spring 引导启动器作为 parent 的缺点之一是,如果您需要特定版本的库,则需要包含所有依赖项.将其用作 parent 时,就像指定带有版本的 属性(即 spring-batch.version)一样简单。