基于springboot和jsp的java web项目打包jar的注意事项(web资源导入META-INF目录并注意springbootmavenplugin版本)

基于springboot 和jsp的项目打包注意事项

基于springboot 和jsp的项目打包jar的注意事项

使用springboot可以开发基于jsp的的java web项目,打包方式有两种,jar和war。但是在打包jar时,很容易出现问题。主要总结两点共大家参考。

注意事项1,修改webapp资源路径,必须将资源导入到包中

在pom.xml的build标签中,添加以下resources标签。

    <resources>
        <resource>
            <directory>src/main/webapp</directory>
            <targetPath>META-INF/resources</targetPath>
            <includes>
                <include>**/*.*</include>
            </includes>
        </resource>
        <resource>
            <directory>src/main/java</directory>
            <!--包含指定格式的文件,maven会自动忽略.class格式之外的其他的格式文件-->
            <includes>
                <include>**/*.properties</include>
                <include>**/*.xml</include>
                <include>**/*.tld</include>
            </includes>
            <!--排除指定格式的文件-->
            <!--  <excludes>
                <exclude>**/*.class</exclude>
              </excludes>-->
        </resource>
        <resource>
            <directory>src/main/resources</directory>
            <includes>
                <include>**/*.properties</include>
                <include>**/*.xml</include>
                <include>**/*.tld</include>
            </includes>
        </resource>
    </resources>
    
    其中,重点是:
    <resource>
            <directory>src/main/webapp</directory>
            <targetPath>META-INF/resources</targetPath>
            <includes>
                <include>**/*.*</include>
            </includes>
        </resource>
        作用是将web资源放到jar包的META/resources下
        在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

注意事项2,注意spring-boot-maven-plugin的版本

例如,1.5.3.RELEASE即便在jsp已经添加到了jar中还是会导致访问404;
但是1.4.2.RELEASE没有问题。

<plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <version>1.4.2.RELEASE</version>
                <configuration>
                    <excludes>
                        <exclude>
                            <groupId>org.projectlombok</groupId>
                            <artifactId>lombok</artifactId>
                        </exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值