IDEA使用Spring Boot Maven Profiles构建多项目(踩坑)

1. 首先在pom.xml添加


	<profiles>
		<profile>
			<id>beta</id>
			<activation>
				<activeByDefault>true</activeByDefault>
			</activation>
			<properties>
				<profile.active>beta</profile.active>
			</properties>
		</profile>
		<profile>
			<id>develop</id>
			<properties>
				<profile.active>develop</profile.active>
			</properties>
		</profile>
		<profile>
			<id>product</id>
			<properties>
				<profile.active>product</profile.active>
			</properties>
		</profile>
	</profiles>

在application.properties 加上打包引入maven配置

spring.profiles.active=@profile.active@ 

在这里插入图片描述
IDEA Maven右侧栏
在这里插入图片描述
使用Spring Boot 打包

<build>
		<resources>
			<resource>
				<directory>src/main/resources</directory>
				<!--先排除所有的配置文件-->
				<excludes>
					<exclude>application.properties</exclude>
					<exclude>application-beta.properties</exclude>
					<exclude>application-develop.properties</exclude>
					<exclude>application-product.properties</exclude>
				</excludes>
			</resource>
			<resource>
				<directory>src/main/resources</directory>
				<!--引入所需环境的配置文件-->
				<filtering>true</filtering>
				<includes>
					<include>**/*.xml</include>
					<include>application.properties</include>
					<include>application-${profile.active}.properties</include>
				</includes>
			</resource>
		</resources>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
				<configuration>
					<classifier>exec</classifier>
				</configuration>
			</plugin>
		</plugins>

。。。。。。。。。。。此处有一个坑。。。。。。。。。
。。。。。。。。。。。此处有一个坑。。。。。。。。。
。。。。。。。。。。。此处有一个坑。。。。。。。。。
。。。。。。。。。。。此处有一个坑。。。。。。。。。

!!引用所需环境的配置文件 下面代码需要注释。不然Profiles打包会失效。也说不上失效吧,最终还是会把所有配置文件放过,给打包!!
在这里插入图片描述
在这里插入图片描述
出现以上情况需要注释掉以下代码

			<resource>
				<directory>src/main/resources</directory>
				<includes>
					<include>**/*.xml</include>
					<include>**/*.properties</include>
				</includes>
				<filtering>true</filtering>
		  </resource>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值