91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

spring整合hibernate的applicationContext.xml文件配置以及web.xml

發布時間:2020-07-04 22:09:17 來源:網絡 閱讀:1449 作者:封起De日子 欄目:開發技術

applicationContext.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:aop="http://www.springframework.org/schema/aop"

  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-3.1.xsd 

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

  http://www.springframework.org/schema/tx/spring-tx-3.1.xsd

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

  http://www.springframework.org/schema/aop/spring-aop-3.1.xsd">

  <!-- 配置hibernate連接信息 -->

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

    <property name="driverClassName" value="oracle.jdbc.driver.OracleDriver"/>

    <property name="url" value="jdbc:oracle:thin:@localhost:1521:orcl"/>

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

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

  </bean>

  <!-- 配置sessionFactory -->

  <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">

    <property name="dataSource" ref="source"/>

    <!-- 配置hibernate其他參數 -->

    <property name="hibernateProperties">

      <props>

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

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

        <prop key="javax.persistence.validation.mode">none</prop>

      </props>

    </property>

    <!-- 配置hibernate映射文件,非注解情況下 -->

    <property name="mappingResources">

      <list>

        <value>entity/Comments.hbm.xml</value>

        <value>entity/News.hbm.xml</value>

        <value>entity/User.hbm.xml</value>

        <value>entity/Topic.hbm.xml</value>

      </list>

    </property>

  </bean>

  <!-- 配置dao注入sessionFactory -->

  <bean id="userDao" class="dao.UserDaoImpl">

    <property name="sessionFactory" ref="sessionFactory"/>

  </bean>

  <!-- 向userService注入dao -->

  <bean id="userService" class="service.UserServiceImpl">

    <property name="userDao" ref="userDao"></property>

  </bean>

  <!-- 定義事務管理器  -->

  <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">

    <property name="sessionFactory" ref="sessionFactory"/>

  </bean>

  <!-- 配置事務增強 -->

  <tx:advice id="txAdvice" transaction-manager="txManager">

    <!-- 定義屬性,聲明事務規則 -->

    <tx:attributes>

      <tx:method name="find*" read-only="true"/>

      <tx:method name="search*" read-only="true"/>

      <tx:method name="query*" read-only="true"/>

      <tx:method name="add*" propagation="REQUIRED"/>

      <tx:method name="del*" propagation="REQUIRED"/>

      <tx:method name="update*" propagation="REQUIRED"/>

      <tx:method name="do*" propagation="REQUIRED"/>

      <tx:method name="*" propagation="REQUIRED" read-only="true"/>

    </tx:attributes>

  </tx:advice>

  <aop:config>

    <!-- 配置切入點 -->

    <aop:pointcut expression="execution(* service.*.*(..))" id="serviceMethod"/>

    <!-- 將事物增前和切入點結合 -->

    <aop:advisor advice-ref="txAdvice" pointcut-ref="serviceMethod"/>

  </aop:config>

</beans>

web.xml文件

<?xml version="1.0" encoding="UTF-8"?>

<web-app version="3.0" 

xmlns="http://java.sun.com/xml/ns/javaee" 

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 

xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 

http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">

  <display-name></display-name>

  <welcome-file-list>

    <welcome-file>index.jsp</welcome-file>

  </welcome-file-list>

  <context-param>

    <param-name>contextConfigLocation</param-name>

    <param-value>classpath:applicationContext.xml</param-value>

  </context-param>

  <listener>

    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>

  </listener>

  <!-- OpenSessionInViewFilter,配置次功能可以延時加載,即保持會話隨事件開啟 -->

  <filter>

    <filter-name>OpenSessionInViewFilter</filter-name>

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

  </filter>

  <filter-mapping>

    <filter-name>OpenSessionInViewFilter</filter-name>

    <url-pattern>*.action</url-pattern>

  </filter-mapping>

</web-app>



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

湖州市| 修武县| 盐边县| 蚌埠市| 黄石市| 永清县| 彰化县| 威信县| 垫江县| 融水| 南平市| 涞源县| 大方县| 克东县| 昂仁县| 广河县| 阜新市| 樟树市| 南召县| 山东省| 舞钢市| 石首市| 常宁市| 天台县| 安新县| 兰坪| 舟曲县| 云龙县| 亚东县| 荆门市| 双辽市| 河西区| 井研县| 梧州市| 海宁市| 丽水市| 保康县| 大邑县| 临洮县| 济南市| 天全县|