Maven多环境配置

1.使用maven-resources-plugin


    org.apache.maven.plugins
    maven-resources-plugin
    2.6
    
        
            @
        
        
        UTF-8
    

可以使用delimiter来指定了占位符,默认为${*},在Maven2.4版本以后默认还支持@占位符。

2.指定属性文件和需要被替换属性的文件目录,在中配置


    ../profiles/common.properties
    ../profiles/${app.env}.properties


    
        src/main/resources
        true
    

3.配置profiles


    
        local
        
            local
        
        
        
            true
        
    
    
        test
        
            test
        
    

4.用maven打包的时候指定参数

你可能感兴趣的:(Maven多环境配置)