spring boot 多环境配置开发及打包

使用 springboot 和没有使用springboot的多环境配置是两个完全不一样的,前者是配置在application.properties(默认文件中)或application.yml。

在没有使用spring boot时SSM项目中都是在Maven项目的pom.xml 去配置多环境配置开发及打包

server:  
  port: 8080  
  
# 默认的profile为dev,如需其它环境通过指定启动参数使用不同的profile,比如:  
#   测试环境:java -jar my-spring-boot.jar --spring.profiles.active=dev  
#   生产环境:java -jar my-spring-boot.jar --spring.profiles.active=prod  
spring:  
  profiles:  
    active: dev  
  
---  
# 开发环境配置  
spring:  
  profiles: dev  
mysql:  
  ipPort: localhost:3306  
    
---  
# 测试环境配置  
spring:  
  profiles: sit  
mysql:  
  ipPort: 192.168.11.16:8066  
    
---  
# 生产环境配置  
spring:  
  profiles: prod  
mysql:  
  ipPort: 192.168.11.18:8066  
而没有使用springboot时在maven项目中需配置如下:


        
            dev
            
                conf/dev
            
        
        
            sit
            
                conf/sit
            
        
        
            uat
            
                conf/uat
            
        
        
            prod
            
                conf/prod
            
        
    
在resource资源文件下创建dev、sit、uat、prod文件并且在文件下创建以.properties的文件即可。



你可能感兴趣的:(Spring,Boot)