05_springboot多配置文件
Posted naodaiyoudianda
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了05_springboot多配置文件相关的知识,希望对你有一定的参考价值。
1.多配置文件,其中application.properties中的spring.profiles.active能够灵活的切换使用环境
application.properties
spring.mvc.view.prefix=/WEB-INF/jsp/
spring.mvc.view.suffix=.jsp
spring.profiles.active=pro
application-dev.properties
server.port=8080
server.context-path=/test
application-pro.properties
server.port=80
server.context-path=/
2.部署,在项目目录下生成jar包mvn install
在pro环境下运行
在dev环境下运行
以上是关于05_springboot多配置文件的主要内容,如果未能解决你的问题,请参考以下文章
MYBATIS05_ifwherechoosewhentrimsetforEach标签sql片段
全栈编程系列SpringBoot整合Shiro(含KickoutSessionControlFilter并发在线人数控制以及不生效问题配置启动异常No SecurityManager...)(代码片段