SpringBoot工程中pom的两只写法

使用start地址进行新建SpringBoot工程

默认配置:



    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        1.5.19.RELEASE
         
    

    com.example
    demo
    0.0.1-SNAPSHOT

    demo
    Demo project for Spring Boot

    
        1.8
    

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

        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    



可以改造为:



    4.0.0

    com.example
    demo
    0.0.1-SNAPSHOT

    demo
    Demo project for Spring Boot

    
        1.8
        1.5.19.RELEASE
    

    
        
            org.springframework.boot
            spring-boot-starter-web
            ${springboot.version}
        

        
            org.springframework.boot
            spring-boot-starter-test
            ${springboot.version}
            test
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    



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