时间:2021-05-21
一:父级pom.xml文件 resources目录下新建指定文件夹,存放Spring配置文件
<profiles> <profile> <id>dev</id> <properties> <profiles.active>dev</profiles.active> </properties> <activation> <activeByDefault>true</activeByDefault> </activation> </profile> <profile> <id>telework</id> <properties> <profiles.active>telework</profiles.active> </properties> </profile> <profile> <id>sit</id> <properties> <profiles.active>sit</profiles.active> </properties> </profile> <profile> <id>pre</id> <properties> <profiles.active>pre</profiles.active> </properties> </profile> <profile> <id>prod</id> <properties> <profiles.active>prod</profiles.active> </properties> </profile></profiles>二:application.properties
######################### server ###################server.servlet.context-path=/i-admin-apiserver.port=10086spring.profiles.active=@profiles.active@到此这篇关于Admin - SpringBoot + Maven 多启动环境配置实例详解的文章就介绍到这了,更多相关SpringBoot + Maven 环境配置内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
最近公司运用springboot构建项目,确实比ssh搭建要快很多。1.首先要下载maven,用maven管理项目很方便,下载完maven配置好环境,maven
IntellijIDEA开发工具,基于Maven框架的SpringBoot简单示例演示启动。Maven工程pom.xml配置,主要引入spring-boot-s
本文介绍了springboot的maven配置依赖详解,分享给大家,具体如下:我们通过引用spring-boot-starter-parent,添加spring
通过maven创建springboot项目启动出现404application.properties配置spring.mvc.view.prefix=/WEB-
Maven搭建springboot项目本文是基于Windows10系统环境,使用Maven搭建springboot项目Windows10apache-maven