springboot访问路径配置和Profile配置说明
Spring Boot匹配指定后缀.action .do的路径访问
(项目地址:https://github.com/heng1234/springboot2.x/tree/master/boot_banner_yml)
新建个配置文件MyWebMvcConfigurer
只有后缀是.action 和.do的才能访问controller到
Profile配置
Profile用来针对不同的环境下使用不同的配置文件,多环境配置文件必须以application-{profile}.properties
的格式命,其中{profile}
为环境标识。比如定义两个配置文件:
application-dev.properties:开发环境
application-prod.properties:生产环境
至于哪个具体的配置文件会被加载,需要在application.properties文件中通过spring.profiles.active
属性来设置,其值对应{profile}
值。
如:spring.profiles.active=dev
就会加载application-dev.properties配置文件内容。可以在运行jar文件的时候使用命令java -jar xxx.jar --spring.profiles.active={profile}
切换不同的环境配置。
Last updated
Was this helpful?