`
收藏列表
标题 标签 来源
applicationContext.xml spring
<?xml version="1.0" encoding="UTF-8"?>
<beans
	xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
	
	<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
		<property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
		<property name="url" value="jdbc:mysql://127.0.0.1:3306/laohutu"></property>
		<property name="username" value="root"></property>
		<property name="password" value="root"></property>
	</bean>
	<bean id="sessionFactory"
		class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
		<property name="dataSource" ref="dataSource"></property>
		<property name="hibernateProperties">
			<props>
				<prop key="hibernate.dialect">
					org.hibernate.dialect.MySQLDialect
				</prop>
				<prop key="hibernate.hbm2ddl.auto">
						update
				</prop>
				<prop key="hibernate.show_sql">
						true
				</prop>
				<prop key="hibernate.format_sql">
						true
				</prop>
			</props>
		</property>
		<property name="mappingResources">
			<list>
				<value>com/hutu/po/Dept.hbm.xml</value>
			</list>
		</property>
	</bean>
	<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
		<property name="sessionFactory" ref="sessionFactory"></property>
	</bean>
	<bean id="transactionInterceptor" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
		<property name="transactionManager" ref="transactionManager"></property>
		<property name="transactionAttributes">
			<props>
				<prop key="save*">PROPAGATION_REQUIRED</prop>
				<prop key="delete*">PROPAGATION_REQUIRED</prop>
				<prop key="update*">PROPAGATION_REQUIRED</prop>
				<prop key="find*">PROPAGATION_REQUIRED,readOnly</prop>
			</props>
		</property>
	</bean>
	
	<!-- ֻהӔserviceޡβքbeanط˂ϱԦm -->    
 <bean  class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">    
   <property name="proxyTargetClass" >    
		 <value>true</value>    
    </property>  
   <property name="beanNames">    
    <value>*service</value>    
   </property>    
   <property name="interceptorNames">    
    <list>  
     <value>transactionInterceptor</value>    
    </list>    
   </property>    
</bean> 


	<bean id="deptdao" class="com.hutu.dao.DeptDao">
		<property name="sessionFactory" ref="sessionFactory"></property>
	</bean>
	<bean id="deptservice" class="com.hutu.service.DeptService">
		<property name="deptdao" ref="deptdao"></property>
	</bean>
	<bean id="deptaction" class="com.hutu.action.DeptAction">
		<property name="deptservice" ref="deptProxy"></property>
	</bean>
	</beans>
Spring 动态配置数据源 spring
hibernate.properties:放置在src根目录下
hibernate.properties:
jdbc.driverClassName=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://127.0.0.1:3306/laohutu
jdbc.username=root
jdbc.password=root

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"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
	
	
	<bean id="propertyConfigurer"
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
       <property name="location">
           <value>classpath:hibernate.properties</value>
        </property>
     </bean>
     
	<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
		<property name="driverClassName" value="${jdbc.driverClassName}"></property>
		<property name="url" value="${jdbc.url}"></property>
		<property name="username" value="${jdbc.username}"></property>
		<property name="password" value="${jdbc.password}"></property>
	</bean>
	<bean id="sessionFactory"
		class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
		<property name="dataSource" ref="dataSource"></property>
		<property name="hibernateProperties">
			<props>
				<prop key="hibernate.dialect">
					org.hibernate.dialect.MySQLDialect
				</prop>
				<prop key="hibernate.hbm2ddl.auto">
						update
				</prop>
				<prop key="hibernate.show_sql">
						true
				</prop>
				<prop key="hibernate.format_sql">
						true
				</prop>
			</props>
		</property>
Global site tag (gtag.js) - Google Analytics