springboot问题系列——jsp在linux上无法访问


作者:空白

问题背景描述:

springboot打包jar文件,发布到linux服务器上,访问的jsp存在jar包上,但是无法访问到,但是windows本地可以访问。出现了这样的不一致问题!

问题原因: 网上找的一系列解决方案,是因为springboot的打包maven插件版本问题。

指定spring-boot-maven-plugin版本为1.4.2.RELEASE,高的版本无效!亲测有效!


        <plugins>
<!-- 			<plugin> -->
<!-- 				<groupId>org.springframework.boot</groupId> -->
<!-- 				<artifactId>spring-boot-maven-plugin</artifactId> -->
<!-- 				<executions> -->
<!-- 					<execution> -->
<!-- 						<goals> -->
<!-- 							<goal>repackage</goal> -->
<!-- 							<goal>build-info</goal> -->
<!-- 						</goals> -->
<!-- 					</execution> -->
<!-- 				</executions> -->
<!-- 			</plugin> -->
			<plugin>
	          <groupId>org.springframework.boot</groupId>
	          <artifactId>spring-boot-maven-plugin</artifactId>
	          <version>1.4.2.RELEASE </version>
	        </plugin> 
        </plugins>
扫码或搜索:前沿科技
发送 290992
即可立即永久解锁本站全部文章