applicationContext.xml文件的配置

    技术2022-05-19  34

    <?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"

           xsi:schemaLocation="http://www.springframework.org/schema/beans 

               http://www.springframework.org/schema/beans/spring-beans-2.5.xsd

               http://www.springframework.org/schema/context

               http://www.springframework.org/schema/context/spring-context-2.5.xsd">

                <!-- 用来支持使用annotation,并且支持查找出来使用 annotation的类-->   

         <context:component-scan base-package="com.shoubei"/>

     

     

     

    <bean id="dataSource"

    class="org.apache.commons.dbcp.BasicDataSource">

    <property name="driverClassName"

    value="com.mysql.jdbc.Driver">

    </property>

    <property name="url" value="jdbc:mysql:///shoubei"></property>

    <property name="username" value="root"></property>

    <property name="password" value="admin"></property>

    </bean>

    <bean id="sessionFactory"

    class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">

    <property name="dataSource">

    <ref bean="dataSource"></ref>

    </property>

    <property name="hibernateProperties">

    <props>

    <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>

    <prop key="hibernate.show_sql">true</prop>

    <prop key="hibernate.hbm2ddl.auto">update</prop>

    </props>

    </property>

    <!-- packagesToScan是用来搜索用annotation配置的Bean -->

    <property name="packagesToScan">

    <list>

    <value>com.shoubei</value>

    </list>

    </property>

    </bean>

    </beans>


    最新回复(0)