zoukankan      html  css  js  c++  java
  • 【转】 利用spring的profile切换不同的环境

                <?xml version="1.0" encoding="UTF-8"?>  
                <beans xmlns="http://www.springframework.org/schema/beans"  
                    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"  
                    xmlns:aop="http://www.springframework.org/schema/aop"  
                    xsi:schemaLocation="http://www.springframework.org/schema/beans   
                    http://www.springframework.org/schema/beans/spring-beans.xsd   
                    http://www.springframework.org/schema/context   
                    http://www.springframework.org/schema/context/spring-context.xsd   
                    http://www.springframework.org/schema/aop   
                    http://www.springframework.org/schema/aop/spring-aop.xsd">  
                  
                    <!-- 自动扫描 -->  
                <!--     <context:component-scan base-package="com.wei" /> -->  
                    <import resource="spring-dao.xml" />  
                    <import resource="spring-service.xml" />  
                    <import resource="spring-mvc.xml" />  
                    <import resource="spring-cxf.xml" />  
                    <beans profile="dev"  >  
                        <context:property-placeholder location="classpath*:jdbc-dev.properties" />  
                    </beans>  
                    <beans profile="sit"  >  
                        <context:property-placeholder location="classpath*:jdbc-sit.properties" />  
                    </beans>  
                </beans> 

      web.xml配置如下:

                <?xml version="1.0" encoding="UTF-8"?>  
                <beans xmlns="http://www.springframework.org/schema/beans"  
                    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"  
                    xmlns:aop="http://www.springframework.org/schema/aop"  
                    xsi:schemaLocation="http://www.springframework.org/schema/beans   
                    http://www.springframework.org/schema/beans/spring-beans.xsd   
                    http://www.springframework.org/schema/context   
                    http://www.springframework.org/schema/context/spring-context.xsd   
                    http://www.springframework.org/schema/aop   
                    http://www.springframework.org/schema/aop/spring-aop.xsd">  
                  
                    <!-- 自动扫描 -->  
                <!--     <context:component-scan base-package="com.wei" /> -->  
                    <import resource="spring-dao.xml" />  
                    <import resource="spring-service.xml" />  
                    <import resource="spring-mvc.xml" />  
                    <import resource="spring-cxf.xml" />  
                    <beans profile="dev"  >  
                        <context:property-placeholder location="classpath*:jdbc-dev.properties" />  
                    </beans>  
                    <beans profile="sit"  >  
                        <context:property-placeholder location="classpath*:jdbc-sit.properties" />  
                    </beans>  
                </beans> 
  • 相关阅读:
    谈谈对程序猿的管理
    OFMessageDecoder 分析
    [LeetCode-21]Construct Binary Tree from Preorder and Inorder Traversal
    leetcode第一刷_Rotate Image
    [二次开发]dede文章页面怎样显示作者的头像
    MapReduceTopK TreeMap
    安卓3d引擎
    LeetCode::Sort List 具体分析
    杨帆之工作日志-2014.6.24
    CF1109F Sasha and Algorithm of Silence's Sounds
  • 原文地址:https://www.cnblogs.com/zdd-java/p/6214104.html
Copyright © 2011-2022 走看看