zoukankan      html  css  js  c++  java
  • applicationContext.xml

    <?xml version="1.0" encoding="GB2312"?>
    <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:tx="http://www.springframework.org/schema/tx"
        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
     http://www.springframework.org/schema/mvc http://www.springframework.org/schema/beans/spring-mvc-3.0.xsd
      http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
        <bean id="applicationProperties"
            class="org.springframework.beans.factory.config.PropertiesFactoryBean">
            <property name="ignoreResourceNotFound" value="true" />
            <property name="locations">
                <list> 
                    <!-- 标准配置 -->
                    <value>classpath:jdbc.properties</value>
                </list> 
            </property>
        </bean>
        
        <bean id="propertyConfigurer"
            class="cn.edu.hbcf.common.springmvc.CustomizedPropertyConfigurer">
            <property name="locations">
                <list>
                    <value>classpath:jdbc.properties</value>
                    <value>classpath:system.properties</value>
                </list>
            </property>
        </bean>
        <import resource="classpath:/spring/spring-pool.xml" />
        
        <import resource="classpath:/spring/spring-common.xml" />
        
        
        <import resource="classpath:/spring/spring-webservice.xml"/>
                
        
    </beans>
  • 相关阅读:
    Android屏幕适配全攻略(最权威的官方适配指导)--转
    Android实现全屏的三种方式
    Mysql锁(翻译)
    mysql5.6主从配置
    jvm加载类(更新中)
    如何定位jdk中的native方法源码?
    光学字符识别OCR-2
    光学字符识别OCR
    关于freetype在安装中的遇到的问题
    锚点链接
  • 原文地址:https://www.cnblogs.com/zrui-xyu/p/4942956.html
Copyright © 2011-2022 走看看