SpringCloudAlibaba系列教程(一)

我们需要引入3个核心大组件,springboot,springcloud,spring-cloud-alibaba,这3个组件的版本不能乱用,版本不匹配会发生各种奇奇怪怪的问题,

版本参考

 

我们做开发的时候,通常会建一个公共父工程,定下整个项目的通用内容。



    4.0.0

    cn.itsub
    open-cloud
    1.0
    pom


    
        
            spring
            https://maven.aliyun.com/repository/central
            
                true
            
            
                true
            
        
    

    
    
        
        
            dev
            
                
                true
            
            
                dev
                127.0.0.1:8848
                127.0.0.1:8848
                http://localhost:8211
                http://localhost:8888
            
        
        
        
            test
            
                false
            
            
                test
                
                127.0.0.1:8848
                
                127.0.0.1:8848
                
                http://localhost:8211
                
                http://localhost:8888
            
        
        
        
            prod
            
                false
            
            
                prod
                
                127.0.0.1:8848
                
                127.0.0.1:8848
                
                http://localhost:8211
                
                http://localhost:8888
            
        
    

    
        1.8
        UTF-8
        UTF-8
        UTF-8
        2.3.2.RELEASE
        Hoxton.SR8
        2.2.5.RELEASE
        2.2.5.RELEASE
    
    
    
        
            org.springframework.boot
            spring-boot-starter-test
        
        
            org.springframework.boot
            spring-boot-configuration-processor
            true
        
        
            org.projectlombok
            lombok
        
        
            org.springframework.boot
            spring-boot-devtools
            true
            true
        

    
    
        
            
            
                org.springframework.boot
                spring-boot-dependencies
                ${spring-boot.version}
                pom
                import
            
            
            
                org.springframework.cloud
                spring-cloud-dependencies
                ${spring-cloud.version}
                pom
                import
            
            
            
                org.springframework.cloud
                spring-cloud-alibaba-dependencies
                ${spring-cloud-alibaba.version}
                pom
                import
            
        
    

    
        
            
            
                src/main/resources
                
                    **/*
                
                true
            
        

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

    


 

你可能感兴趣的:(后端开发,微服务架构,springcloud,微服务,dubbo,alibaba)