首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

四)spring 的 applicationContext.xml

2012-09-19 
4)spring 的 applicationContext.xmlspring 的 applicationContext.xml ?xml version1.0 encodingUT

4)spring 的 applicationContext.xml

spring 的 applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd"><beans> <!-- 引入参数配置文件 --> <bean id="propertyConfigurer" abstract="true" />  </property>  <property name="transactionAttributes">   <props>    <prop key="insert*">PROPAGATION_REQUIRED</prop>    <prop key="update*">PROPAGATION_REQUIRED</prop>    <prop key="delete*">PROPAGATION_REQUIRED</prop>    <prop key="*">PROPAGATION_REQUIRED,readOnly</prop>   </props>  </property> </bean>   <!-- ibatis sqlMapClient 配置 --> <bean id="sqlMapClient" >   <ref bean="sqlMapClient"/>  </property> </bean>   <!-- 添加了事务的管理类 --> <bean id="ibatis_BookManager" parent="baseTransactionProxy">  <property name="target">   <bean class="com.spring.demo.manager.Ibatis_BookManager">    <property name="dao">     <ref bean="ibatis_BookDao"/>    </property>   </bean>  </property> </bean>  </beans>


5) 数据源参数配置文件:jdbc.properties
【说明 :按照你的具体情况来配置】:
------------

引用
jdbc.driverClass=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/springdemo?useUnicode=true&characterEncoding=utf-8

jdbc.user=root

jdbc.password=root

jdbc.initialPoolSize=1

jdbc.minPoolSize=1

jdbc.maxPoolSize=10------------

热点排行