使用 JSP 和 POM 中的自定义父集从 spring 引导 MVC 项目服务内容制作可执行 jar

Making an executable jar out of spring boot MVC project serving content using JSP and a custom parent set in POM

我有一个 Spring MVC 项目,我正在将其转换为 spring 引导。我的这个项目不能被赋予 spring-boot-starter-parent 作为父项,因为我需要保留一个自定义父项。 我通过在 dependencyManagement 中注入 spring-boot-dependencies 解决了第一个问题。 我还需要我的项目嵌入一个tomcat,所以我使用了spring-boot-starter-web。我需要使用 JSP 所以我已经将依赖项添加到 jstljasper.

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-dependencies</artifactId>
            <version>2.1.4.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>
<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-loader -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-loader</artifactId>
        <version>2.1.4.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.apache.tomcat.embed</groupId>
        <artifactId>tomcat-embed-jasper</artifactId>
        <scope>provided</scope>
    </dependency>
    <dependency>
        <groupId>org.apache.tomcat.embed</groupId>
        <artifactId>tomcat-embed-core</artifactId>
    </dependency>
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>jstl</artifactId>
    </dependency>
<!-- ... -->
</dependencies>

使用

编译jar并启动服务器
mvn spring-boot:run

正确工作。现在我想让它也作为可执行 jar 工作。

我已经阅读了一些文档、帖子、网页、堆栈溢出问题,但我仍然无法使其正常工作。

this question, reading the edited version of the accepted answer and the github project 中,从具有父项目 spring-boot-starter-parent 的项目中制作可执行 jar 看起来非常容易。是否也可以让它与自定义父项一起使用?

我已经尝试遵循这些准则,但它不适用于我的项目。 我尝试添加插件

<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <executions>
        <execution>
            <goals>
                <goal>repackage</goal>
            </goals>
        </execution>
    </executions>
</plugin>

有和没有 execution 节点

和插件

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-war-plugin</artifactId>
    <version>3.0.0</version>
    <configuration>
        <failOnMissingWebXml>false</failOnMissingWebXml>
        <archive>
            <manifestFile>src/main/webapp/META-INF/MANIFEST.MF</manifestFile>
        </archive>
<!--    <archive>-->
<!--        <manifest>-->
<!--            <mainClass>my-boot-application</mainClass>-->
<!--            <springBootClasses>WEB-INF/classes/</springBootClasses>-->
<!--            <springBootLib>WEB-INF/lib/</springBootLib>-->
<!--        </manifest>-->
<!--    </archive>-->
    </configuration>
</plugin>

包含和不包含 manifest 自定义信息。

最终,我在 this Whosebug post 中列出了使用 jsp、嵌入式 tomcat 和自定义父项目制作 spring 启动应用程序所需的所有内容。

因此,我的 pom.xml 现在可读性更强且紧凑,看起来很像 link 中的示例。