1. 程式人生 > >spring 項目分開發和生產環境

spring 項目分開發和生產環境

XML 生產 修改 default cti csharp light pos sha

1、pom 文件修改

<profile>
			<!-- 本地開發環境 -->
			<id>dev</id>
			<properties>
				<profiles.active>dev</profiles.active>
				<webXmlPath>src/main/filters/dev/web.xml</webXmlPath> 
			</properties>
			<activation>
				<activeByDefault>true</activeByDefault>
			</activation>
		</profile>
		<profile>
			<!-- 生產環境 -->
			<id>prod</id>
			<properties>
				<profiles.active>prod</profiles.active>
				<webXmlPath>src/main/filters/prod/web.xml</webXmlPath>
			</properties>
		</profile>

  

spring 項目分開發和生產環境