一个ApplicationContext.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:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context"
  xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
  xsi:schemaLocation="
   http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-2.5.xsd
   http://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-2.5.xsd
   http://www.springframework.org/schema/jeehttp://www.springframework.org/schema/jee/spring-jee-2.5.xsd
   http://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
 <!-- DataSource for Production --> 
<!--
 <bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
  <property name="jndiName"><value>jdbc/asomDS</value></property>
 </bean>

 <bean id="cmsDataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
  <property name="jndiName"><value>jdbc/asomCmsDS</value></property>
 </bean>
 --> 

 <!-- DataSource for Development --> 

 <!-- Hibernate SessionFactory -->

 <!-- Transaction manager for a single JDBC DataSource -->
 <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
  <property name="sessionFactory"><ref bean="sessionFactory"/></property>
 </bean>

 <!-- Transaction attribute for a single JDBC DataSource -->
 <bean id="txAttributes" class="org.springframework.transaction.interceptor.NameMatchTransactionAttributeSource">
  <property name="properties">
   <value>
    get*=PROPAGATION_REQUIRED,readOnly
    load*=PROPAGATION_REQUIRED,readOnly
    find*=PROPAGATION_REQUIRED,readOnly
    list*=PROPAGATION_REQUIRED,readOnly
    *=PROPAGATION_REQUIRED
   </value>
  </property>
 </bean>

 <!-- POJO Service Interceptor -->
 <bean id="mainTransactionInterceptor" class="org.springframework.transaction.interceptor.TransactionInterceptor">
  <property name="transactionManager">
   <ref bean="transactionManager" />
  </property>
  <property name="transactionAttributeSource">
   <ref bean="txAttributes" />
  </property>
 </bean>

 <!-- Service Proxy Creator [ Spring Auto Proxy Creator ] -->
 <bean id="myServiceAutoProxyCreator" class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
  <property name="beanNames">
   <value>*Service</value>
  </property>
  <property name="interceptorNames">
   <list>
    <value>mainTransactionInterceptor</value>
   </list>
  </property>
 </bean>  
 
 <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
  <property name="dataSource"><ref local="dataSource"/></property>
  <property name="mappingLocations">
   <list>
    <value>classpath:/cn/gov/cma/cnn/entity/*.hbm.xml</value>
    
    <!--  <value>classpath:/cn/gov/cma/cnn/entity/Bas*.hbm.xml</value>-->
   </list>
  </property>
  <property name="hibernateProperties">
   <props>
    <prop key="hibernate.dialect">org.hibernate.dialect.OracleDialect</prop>
    <prop key="hibernate.cache.provider_class">org.hibernate.cache.HashtableCacheProvider</prop>
    <prop key="hibernate.query.factory_class">org.hibernate.hql.ast.ASTQueryTranslatorFactory</prop>
    <prop key="hibernate.hbm2ddl.auto">update</prop>
    <prop key="hibernate.show_sql">false</prop>
    <prop key="hibernate.max_fetch_depth">4</prop>
   </props>
  </property>
 </bean>
 
 <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
  
  <property name="driverClassName"><value>oracle.jdbc.OracleDriver</value></property>

 
  
    

 
<!--

     <property name="url" value="jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=on)(ADDRESS=(PROTOCOL=TCP)(HOST=61.4.184.114)(PORT=2521))(CONNECT_DATA=(SERVICE_NAME=pwspdb)))" />
     <property name="url" value="jdbc:oracle:thin:@(DESCRIPTION =(ADDRESS = (PROTOCOL = TCP)(HOST = 10.148.31.32)(PORT = 1521))(CONNECT_DATA =(SERVER = DEDICATED)(SERVICE_NAME = gdyj)(INSTANCE_NAME = gdyj2)))" />
       -->
        <!--
     <property name="url" value="jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=on)(ADDRESS=(PROTOCOL=TCP)(HOST=10.10.31.130)(PORT=2521))(CONNECT_DATA=(SERVICE_NAME=pwspdb)))" />
  -->
     <!-- <property name="url"><value>jdbc:oracle:thin:@localhost:1521:PWSDB</value></property>
  <property name="username"><value>PRODUCTSYS</value></property>
  <property name="password"><value>PRODUCTSYS</value></property>
  -->
     <!--
  <property name="username"><value>system</value></property>
  <property name="password"><value>orasystem</value></property>
  -->
   <property name="url" value="jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=on)(ADDRESS=(PROTOCOL=TCP)(HOST=10.12.10.111)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=cipaspd.css.com)))" />
   <property name="username" value="hwt" />
         <property name="password" value="hwt" />
 </bean>
 
 

 <bean id="placeholderConfig"
  class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  <property name="locations">
   <list>
    <value>/WEB-INF/spring/myQuartzConfig.properties</value>
   </list>
  </property>
 </bean>    
 
 <import resource="applicationContext-monitorService.xml"/>
 
 <import resource="applicationContext_MonitorResult_quartz.xml"/>
 <import resource="applicationContext_MonitorHistoryResult_quartz.xml"/>
 <import resource="applicationContext_quartz.xml"/>
 
 <import resource="cn/gov/cma/cnn/dcm/monitor/applicationContext-monitor.xml"/>
 
</beans>

时间: 2024-10-27 17:40:34

一个ApplicationContext.xml的配置的相关文章

Spring整合了CXF的一个applicationContext.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:jaxws="http://cxf.apache.org/

maven ssh 模块-maven ssh整合 模块开发 怎么配置applicationContext.xml

问题描述 maven ssh整合 模块开发 怎么配置applicationContext.xml 我们现在用maven 开发web项目 关于ssh框架整合时 因为是分多个模块开发 每个模块都会有一个applicationContext.xml 这么多的applicationContext.xml 中 有一个是主要的 其它的都是每个模块的具体配置 这个主要的配置文件该怎么配置 该放在哪

applicationContext.xml配置问题

问题描述 applicationContext.xml中配置Freemarker中文乱码问题(Struts2+SpringFreemarker)FTL中获取到得值生成HTML页面中文显示正常,但就是FTL模板中原有的中文显示乱码,在网上找了些方法基本都一样,只剩下这个方法没试,但在过程中遇到下面的问题.希望大家帮下忙,或者对于这种问题还有别的解决方案吗?<beanid="freemarderConfig"class="org.springframework.web.se

applicationContext.xml加了一个实体映射就提示找不到路径了。

问题描述 applicationContext.xml加了一个<value>com/sinews/insurance/entity/mapping/HotCustomerVisitLog.hbm.xml</value>实体映射,发布项目就提示找不到路径了. 问题补充:可是我那里都是用/这个反斜杠的,十几个实体类都那么写没事,我新增了一个实体类,然后加进去就提示项目找不到路径了wangqj 写道 解决方案 你的意思是说,你复制前面的实体类,然后改了一下名字,然后呢.就发现还是报错.那

Hibernate一个一对多的配置,不知道怎么从xml改为注解

问题描述 我详细贴出代码说下吧 类的关系是:   目录:SiteDirectory继承Directory   目录关系:SiteDirectorySubjection继承DirectorySubjection public class Directory extends BasePojo { private Set<? extends DirectorySubjection> subjections; //目录的上级目录 private Set<? extends DirectorySu

一个用XML配置的动态加载办法,比上一个全面,希望还能进精华区

xml|动态|加载|精华 首先设计一个简单的XML配置文件config.xml<?xml version='1.0' encoding='utf-8'?><test><luck title="Luck Bang Bang Bang" tag="LUCK" application="dispatch.test" method="mm"></luck></test>接下来

java-web.xml中配置地址信息如何从properties中获取

问题描述 web.xml中配置地址信息如何从properties中获取 现在有一个java项目,其中包含web.xml,还有spring的一些配置文件,比如applicationcontext.xml还有一些jsp文件.现在想在这三类文件中添加一些IP配置,三类文件里面都要用到,想统一进行配置放在properties文件中,如何配置或写程序读取才能实现三种文件都能通过类似${变量名}或函数的方式获取配置值? 解决方案 我觉得你还是把你的需求说出来比较好 感觉你这个问题有点奇怪,不晓得你要达到什么

context:property-placeholder 不能解析xml中配置的键值

问题描述 context:property-placeholder 不能解析xml中配置的键值 org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 9 in XML document from URL [file:/E:/PT/Installtomcat/webapps/SSHTest1/WEB-INF/classes/applicationContext.xml] is invalid; nes

Spring IoC — 基于XML的配置

原文:Spring IoC - 基于XML的配置 1.属性注入 注意点: 1)如果类中显示定义了一个带参的构造函数,则一定还要显示提供一个无参构造函数,否则使用属性注入时将抛出异常. 2)JavaBean关于属性命名的特殊规范.Spring只会检查Bean中是否有对应的Setter方法,至于Bean中是否有对应的属性变量则不做要求.如maxSpeed对应setMaxSpeed(),brand对应setBrand(). 所以<property>元素的属性变量名应满足:xxx的属性对应setXxx