Process finished with exit code 1 解决方法

Process finished with exit code 1 解决方法
这个问题是spring容器没有建立起来。我遇到的这个具体问题的原因是依赖之间冲突了。
启动springbootWeb项目只需要两个启动器就可以了,我还从百度上搜了好多单个的依赖,这导致中间包冲突了。

    
        org.springframework.boot
        spring-boot-starter-parent
        2.2.1.RELEASE
    
    

            org.springframework.boot
            spring-boot-starter-web
            2.3.12.RELEASE
 

下面是我百度搜的千奇百怪的依赖们,都是些单独的不成体系和版本关联的:


        
        
        
            org.springframework
            spring-core
            4.3.7.RELEASE
        
        
            org.springframework
            spring-beans
            4.3.7.RELEASE
        
        
            org.springframework
            spring-context
            4.3.7.RELEASE
        
        
        
        
            org.springframework
            spring-jdbc
            4.3.7.RELEASE
        
        
            org.springframework
            spring-tx
            4.3.7.RELEASE
        
        
        
            org.springframework
            spring-web
            4.3.7.RELEASE
        
        
            org.springframework
            spring-webmvc
            4.3.7.RELEASE
        
        
        
            org.springframework
            spring-test
            4.3.7.RELEASE
        

你可能感兴趣的:(spring,java,spring,boot)