首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

spring与hibernate调整的配置文件

2012-10-16 
spring与hibernate整合的配置文件这个是beans.xml的配置文件?xml version1.0 encodingUTF-8?bean

spring与hibernate整合的配置文件
这个是beans.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:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           http://www.springframework.org/schema/aop
           http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
             http://www.springframework.org/schema/tx
           http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
            http://www.springframework.org/schema/context
             http://www.springframework.org/schema/context/spring-context-2.5.xsd ">
             <context:annotation-config/>
<context:property-placeholder location="classpath:jdbc.properties" />
<bean id="dataSource" value="${driverClassName}" />

<property name="url" value="${url}" />
<property name="username" value="${username}" />
<property name="password" value="${password}" />
<property name="initialSize" value="1" />
<property name="maxActive" value="500" />
<property name="maxIdle" value="2" />
<property name="minIdle" value="1" />
</bean>



<bean id="sessionFactory"
ref="dataSource" />
<property name="mappingResources">
<list>
<value>com/shenhua/bean/Person.hbm.xml
</value>
</list>
</property>
<property name="hibernateProperties">
<value>
hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
hibernate.hbm2ddl.auto=create
hibernate.show_sql=true
hibernate.format_Sql=false
        
      </value>
</property>
</bean>



<bean id="txManager"
ref="sessionFactory"></property>
</bean>
<tx:annotation-driven transaction-manager="txManager" />

<bean id="personServiceBean" class="com.shenhua.service.bean.PersonServiceBean"/>


</beans>




以下是jdbc.properties的配置文件
driverClassName=org.gjt.mm.mysql.Driver
url=jdbc\:mysql\://localhost\:3306/shenhua4?useUnicode\=true&amp;characterEncoding\=UTF-8
username=root
password=root



热点排行