项目开发中切换部署开发、测试、生产多环境
作者:网络转载 发布时间:[ 2014/6/12 11:33:53 ] 推荐标签:项目开发
此处定义了不同环境下不同的数据库链接信息
3、web.xml中定义当前使用哪个环境
在web.xml中操作context-param节点
<context-param>
<param-name>spring.profiles.active</param-name>
<param-value>product</param-value>
</context-param>
部署时指定哪个环境为激活状态即可。
如果进行junit测试可以使用
@ActiveProfiles({"test","develop"})
附: 如果spring的profile可以和maven的发布共同作用更好了,但是笔者目前还未能成功将2者结合。
配置提醒:
<beans xmlns="http://www.springframework.org/schema/beans" profile="test,develop" -----设置这个之后,数据库只对test,develop有效
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">
<!-- 定义数据连接池 -->
<!-- 使用spring自带的DriverManagerDataSource方式 -->
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11