54 lines
2.5 KiB
XML
54 lines
2.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns:context="http://www.springframework.org/schema/context"
|
|
xmlns:security="http://www.springframework.org/schema/security"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
|
|
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
|
|
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
|
|
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-4.2.xsd">
|
|
|
|
<!-- 自动扫描所有注解(除Controller) 注册为bean (启动注解) -->
|
|
<context:component-scan base-package="com.eshop">
|
|
<context:exclude-filter type="annotation"
|
|
expression="org.springframework.stereotype.Controller" />
|
|
</context:component-scan>
|
|
|
|
<!--配置数据源 -->
|
|
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
|
|
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
|
|
<property name="url"
|
|
value="jdbc:mysql://127.0.0.1:3306/eshop?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&autoReconnectForPools=true" />
|
|
<property name="username" value="root" />
|
|
<property name="password" value="GaoDi0906" />
|
|
<!-- <property name="password" value="GaoDi0906" /> -->
|
|
<property name="maxActive" value="255" />
|
|
<property name="maxIdle" value="20" />
|
|
<property name="maxWait" value="10000" />
|
|
</bean>
|
|
|
|
<!--配置session工厂 -->
|
|
<bean id="sessionFactory"
|
|
class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
|
|
<property name="dataSource" ref="dataSource" />
|
|
<property name="packagesToScan" value="com.eshop.entity" />
|
|
<property name="hibernateProperties">
|
|
<props>
|
|
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
|
|
<prop key="hibernate.show_sql">false</prop>
|
|
<prop key="hibernate.format_sql">false</prop>
|
|
</props>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- 事务管理器配置 -->
|
|
<bean id="transactionManager"
|
|
class="org.springframework.orm.hibernate5.HibernateTransactionManager">
|
|
<property name="sessionFactory" ref="sessionFactory" />
|
|
</bean>
|
|
|
|
<!-- 启动事务注解 -->
|
|
<tx:annotation-driven transaction-manager="transactionManager"
|
|
proxy-target-class="true" />
|
|
|
|
</beans> |