IDEA打包JAR后,运行出现问题

报错:java.lang.IllegalArgumentException: No auto configuration classes found in META-
INF/spring.factories. If you are using a custom packaging, make sure that file i
s correct.


    org.springframework.boot
    spring-boot-maven-plugin
    
        true
        com.jxust.SpringbootdemoApplication
    
    
        
            
                repackage
            
        
    

写入pom.xml文件中,接着不使用IDEA自带的打包方法,改用在pom.xml文件目录下使用“mvn install”来打包,打包之后如果没报错就可以运行了,运行命令是在生成jar包的目录下使用“java -jar xxx.jar”来运行,接着打开浏览器就可以运行了。

你可能感兴趣的:(springboot)