spring boot项目打成jar运行在Linux可能会出现的问题

1.问题描述:

当出现以下

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.18.1:test (default-test) on project film: There are test failures.

spring boot项目打成jar运行在Linux可能会出现的问题_第1张图片

此类问题经多多次排查,可以确定是单元测试不通过,maven在构建项目时报错,在pom中添加一下内容,可以使maven在构建项目的时候跳过单元测试错误:


    org.apache.maven.plugins
    maven-surefire-plugin
    
        true
    

 

2.如果在linux运行时网上的静态资源访问不出来

需要在pom里的    里面加


	            
	                ${basedir}/src/main/webapp
                    
	                META-INF/resources 
	                
	                    **/**
	                
	            
	            
	                ${basedir}/src/main/resources
	                
	                    **/**
	                
	            
	    

 

你可能感兴趣的:(spring boot项目打成jar运行在Linux可能会出现的问题)