spring 项目分开发和生产环境

Posted hoge

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring 项目分开发和生产环境相关的知识,希望对你有一定的参考价值。

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 项目分开发和生产环境的主要内容,如果未能解决你的问题,请参考以下文章

spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段

使用 maven、spring、freemarker 等帮助设置 YUI Compressor 以适应不同的环境(测试/开发/生产)

Spring BootSpring Boot项目设置多个配置文件,并在生产环境中的Tomcat设置对应的配置文件

自动识别和切换开发环境测试环境生产环境Python代码模板

node - 开发环境与生产环境

项目架构开发:异常处理及日志