spring profiles 多文件配置

父级pom文件中加入此配置

  
  
    
      src/main/resources
      true
    
  

    
    
        dev
        
            dev
        
    
    
    
        test
        
            true
        
        
            test
        
    
    
    
        release

        
            release
        
    

 

启动文件web.xml加入


    spring.profiles.default
    dev


    spring.profiles.active
    ${profiles.activation}

 

初始化xml中加入

       
              
              
       
       
              
              
       

 

感谢观看,可以在微信搜索公众号  “威信交流”,关注一波呗
 

你可能感兴趣的:(spring.profiles)