Spring+hibernate+springmvc整合(四)

2128 ワード

3、ヒップホップの統合 a) 
 Web.xml openone essitionInView
<!-- Hibernate Open Session in View Filter-->

 <filter>

  <filter-name>hibernateFilter</filter-name>

<filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class>

 </filter>

     <filter-mapping>

  <filter-name>hibernateFilter</filter-name>

  <url-pattern>/*</url-pattern>

 </filter-mapping> 

 <filter>

       

b)    Spring     

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">

        <property name="driverClassName" value="com.mysql.jdbc.Driver">

        </property>

        <property name="url"

    value="jdbc:mysql://localhost:3306/test_szoa?characterEncoding=utf-8"></property>

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

    </bean>

    <bean id="sessionFactory"

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

        <property name="dataSource">

            <ref bean="dataSource" />

        </property>

        <property name="hibernateProperties">

            <props>

                <prop key="hibernate.dialect">

                    org.hibernate.dialect.MySQLInnoDBDialect

                </prop>

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

            </props>

        </property>

        <property name="mappingDirectoryLocations">

            <list>

                <value>classpath:icom/szoa/</value>

            </list>

        </property>

<!--     hibernate    -->

            <property name="packagesToScan">

            <list>

                <value>icom.**.domain</value>

            </list>

        </property>

    </bean>