打包Spring启动应用程序,包括JSP和静态资源

ygl*_*odt 9 java spring spring-mvc maven spring-boot

我想将一个spring-boot应用程序打包为jar,我这样做mvn package.

这样就产生了不包含任何一个罐子/WEB-INF/jsp,也没有/src/main/webapp/resources.

我怎样才能确保我的jar包含所需的一切?

我的当前pom.xml:

<modelVersion>4.0.0</modelVersion>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-samples</artifactId>
    <version>1.0.0.RC3</version>
</parent>

<packaging>jar</packaging>

<properties>
    <main.basedir>${basedir}/../..</main.basedir>
    <m2eclipse.wtp.contextRoot>/</m2eclipse.wtp.contextRoot>
</properties>

<dependencies>

    <dependency>
        <groupId>${project.groupId}</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

    <dependency>
        <groupId>${project.groupId}</groupId>
        <artifactId>spring-boot-starter-tomcat</artifactId>
        <scope>provided</scope>
    </dependency>

    <dependency>
        <groupId>org.apache.tomcat.embed</groupId>
        <artifactId>tomcat-embed-jasper</artifactId>
        <scope>provided</scope>
    </dependency>
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>jstl</artifactId>
    </dependency>

    <dependency>
        <groupId>commons-dbcp</groupId>
        <artifactId>commons-dbcp</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-jdbc</artifactId>
    </dependency>

    <dependency>
        <groupId>org.apache.tomcat</groupId>
        <artifactId>tomcat-jdbc</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-tx</artifactId>
    </dependency>

    <dependency>
        <groupId>org.postgresql</groupId>
        <artifactId>postgresql</artifactId>
        <version>9.3-1101-jdbc41</version>
    </dependency>

</dependencies>

<!-- Package as an executable JAR -->
<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
                <useSystemClassLoader>false</useSystemClassLoader>
            </configuration>
        </plugin>
    </plugins>
</build>

<!-- Allow access to Spring milestones and snapshots -->
<!-- (you don't need this if you are using anything after 1.0.0.RELEASE) -->
<repositories>
    <repository>
        <id>spring-snapshots</id>
        <url>http://repo.spring.io/snapshot</url>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
    <repository>
        <id>spring-milestones</id>
        <url>http://repo.spring.io/milestone</url>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
</repositories>
<pluginRepositories>
    <pluginRepository>
        <id>spring-snapshots</id>
        <url>http://repo.spring.io/snapshot</url>
    </pluginRepository>
    <pluginRepository>
        <id>spring-milestones</id>
        <url>http://repo.spring.io/milestone</url>
    </pluginRepository>
</pluginRepositories>
<artifactId>com.example.app</artifactId>
Run Code Online (Sandbox Code Playgroud)

jz1*_*z15 11

以下示例适用于Spring Boot 1.3.3.RELEASE: https://github.com/ghillert/spring-boot-jsp-demo

关键是将静态jsp内容放入:

/src/main/resources/META-INF/resources/WEB-INF/jsp
Run Code Online (Sandbox Code Playgroud)

并确保在application.properties中定义视图前缀/后缀:

spring.mvc.view.prefix=/WEB-INF/jsp/
spring.mvc.view.suffix=.jsp
Run Code Online (Sandbox Code Playgroud)


Mar*_*ner 5

你有什么理由不能使用战争包装类型吗?https://maven.apache.org/plugins/maven-war-plugin/usage.html 我建议使用war包装类型并使用默认的maven web-application结构.

如果您真的想为您的webapp使用jar插件,则需要为您的项目配置它.由于您的发布,我不了解您的结构,不能给您一个例子.在这里查看jar插件的用法:https://maven.apache.org/plugins/maven-war-plugin/usage.html

  • 我试过战争包装,它的工作原理.java -jar myfile.war看起来有点奇怪,但它确实有效.谢谢 ! (4认同)
  • 你需要使用战争包装,否则它看起来都很健全.请参阅JSP限制中的[docs](https://github.com/spring-projects/spring-boot/blob/master/spring-boot/README.md#jsp-limitations). (3认同)