Spring.xml配置

来源:互联网 发布:长春前锦网络信息公司 编辑:程序博客网 时间:2024/06/15 04:33

头文件约束

<?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:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"       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-4.1.xsd         http://www.springframework.org/schema/tx         http://www.springframework.org/schema/tx/spring-tx.xsd">

开启注解扫描

<context:annotation-config/>//开启注解扫描包,并添加例外SpringMVC的Controller包<context:component-scan base-package="com.qd">    <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/></context:component-scan>

dataSource数据源配置(JDBC)

<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">    <property name="driverClassName" value="com.mysql.jdbc.Driver"/>    <property name="url" value="jdbc:mysql://localhost:3306/users"/>    <property name="username" value="root"/>    <property name="password" value="password?"/>    </bean>

Hibernate配置

<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">    <property name="dataSource" ref="dataSource"/>    <property name="hibernateProperties">        <props>            <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>            <prop key="hibernate.show_sql">true</prop>            <prop key="hibernate.format_sql">true</prop>        </props>        </property>    <property name="packagesToScan">        <list>            <value>com.qd.domain</value>        </list>        </property>    </bean>

事务管理器配置

<bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">    <property name="sessionFactory" ref="sessionFactory"/></bean><tx:annotation-driven transaction-manager="transactionManager"/>