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

溫馨提示×

溫馨提示×

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

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

spring整合hibernate的方法是什么

發布時間:2021-10-13 09:57:44 來源:億速云 閱讀:158 作者:柒染 欄目:編程語言

本篇文章給大家分享的是有關spring整合hibernate的方法是什么,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

結構:

Spring和Hibernate整合借助于HibernateTemplate

applicationContext.xml

<?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:aop="http://www.springframework.org/schema/aop"  xmlns:tx="http://www.springframework.org/schema/tx"  xmlns:context="http://www.springframework.org/schema/context"  xsi:schemaLocation="  http://www.springframework.org/schema/beans   http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  http://www.springframework.org/schema/aop   http://www.springframework.org/schema/aop/spring-aop-3.0.xsd  http://www.springframework.org/schema/tx   http://www.springframework.org/schema/tx/spring-tx-3.0.xsd  http://www.springframework.org/schema/context     http://www.springframework.org/schema/context/spring-context-3.0.xsd">   <bean name="c" class="com.lc.pojo.Category">    <property name="name" value="yyy" />  </bean>    <bean name="dao" class="com.lc.dao.CategoryDAO">    <property name="sessionFactory" ref="sf" />  </bean>  <bean name="sf"    class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">    <property name="dataSource" ref="ds" />    <property name="mappingResources">      <list>        <value>com/lc/pojo/Category.hbm.xml</value>      </list>    </property>    <property name="hibernateProperties">      <value>        hibernate.dialect=org.hibernate.dialect.MySQLDialect        hibernate.show_sql=true        hbm2ddl.auto=update        </value>    </property>  </bean>      <!--  數據源-->  <bean name="ds"    class="org.springframework.jdbc.datasource.DriverManagerDataSource">    <property name="driverClassName" value="com.mysql.jdbc.Driver" />    <property name="url" value="jdbc:mysql://localhost:3306/test?characterEncoding=GBK" />    <property name="username" value="root" />    <property name="password" value="123456" />  </bean>   </beans>

測試:

ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");    CategoryDAO bean =(CategoryDAO) context.getBean("dao");    DetachedCriteria criteria = DetachedCriteria.forClass(Category.class);//    List<Category> list = bean.findByCriteria(criteria, 0, 5); //分頁--取0-5個返回//    System.out.println(list);

Category.hbm.xml

<?xml version="1.0"?><!DOCTYPE hibernate-mapping PUBLIC    "-//Hibernate/Hibernate Mapping DTD 3.0//EN"    "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"><hibernate-mapping package="com.lc.pojo">  <class name="Category" table="category_">    <id name="id" column="id">      <generator class="native">      </generator>    </id>    <property name="name" />  </class></hibernate-mapping>


以上就是spring整合hibernate的方法是什么,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

诸暨市| 正宁县| 秦皇岛市| 花莲市| 永善县| 平度市| 朝阳县| 宾川县| 兰西县| 蓬溪县| 时尚| 化州市| 大化| 广昌县| 临沂市| 沙洋县| 小金县| 富顺县| 元谋县| 田阳县| 绵竹市| 临泉县| 通化县| 张北县| 泸水县| 岳阳市| 唐海县| 三亚市| 榆林市| 阜宁县| 河间市| 罗田县| 兰坪| 瑞金市| 区。| 浙江省| 闽清县| 商丘市| 楚雄市| 绵阳市| 措美县|