`

Hibernate使用EHCache二级缓存 .

 
阅读更多
数据库结构:



create table teamEH (id varchar(32),teamname varchar(32));
create table studentEH (id varchar(32),name varchar(32),team_id varchar(32));POJO:



package EHCache;

public class Student ...{
    private String id; //标识id
    private String name; //学生姓名
    private Team team;//班级




    public String getName() ...{
        return name;
    }

  

    public void setId(String id) ...{
        this.id = id;
    }

  

    public void setName(String stuName) ...{
        this.name = stuName;
    }

 

    public String getId() ...{
        return id;
    }

    public Student() ...{ //无参的构造函数
    }

  

    public Team getTeam() ...{
        return team;
    }

    public void setTeam(Team team) ...{
        this.team = team;
    }
}




package EHCache;

import java.util.HashSet;
import java.util.Set;


public class Team ...{
    private String id;
    private Set students;
    private String teamName;
    public String getId() ...{
        return id;
    }

    public void setId(String id) ...{
        this.id = id;
    }

    public String getTeamName() ...{
        return teamName;
    }

    public void setTeamName(String name) ...{
        this.teamName = name;
    }

    public Set getStudents() ...{
        return students;
    }

    public void setStudents(Set students) ...{
        this.students = students;
    }
}
Team.hbm.xml

其中<cache>标签表示对student集合缓存,但只缓存id,如果需要缓存student实例,则需要在student.hbm.xml中的
class标签中配置<cache>



<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<!--
    Mapping file autogenerated by MyEclipse - Hibernate Tools
-->
<hibernate-mapping package="EHCache" >
    <class name="EHCache.Team" table="teamEH" lazy="false">
       <id name="id" column="id">
         <generator class="uuid.hex"></generator>
       </id>
       <property name="teamName" column="teamName"></property>
      
       <set name="students"
            lazy="true"
            inverse="true"
            outer-join="false"
            batch-size="2"
            cascade="save-update"
           >
           <!-- 对students集合缓存,但只是缓存student-id如果要对整个对象缓存,
                还需要在Student.hbm.xml的class标签中加入<cache>标签 -->
         <cache usage="read-write"/>
         <key column="team_id"></key>
         <one-to-many class="EHCache.Student"/>
       </set>
      </class>
</hibernate-mapping>


Student.hbm.xml



<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<!--
    Mapping file autogenerated by MyEclipse - Hibernate Tools
-->
<hibernate-mapping package="EHCache" >
  
    <class name="EHCache.Student" table="studentEH" lazy="false">
       <cache usage="read-write"/>
       <id name="id" column="id" unsaved-value="null">
         <generator class="uuid.hex"></generator>
       </id>

       <property name="name" column="name"></property>
   
       <many-to-one name="team"
                    column="team_id"
                    outer-join="true"
                    cascade="save-update"
                    class="EHCache.Team"></many-to-one>
      </class>
</hibernate-mapping>


Hibernate.cfg.xml

配置hibernate.cache.provider_class以启用EHCache

<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
          "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
          "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<!-- Generated by MyEclipse Hibernate Tools.                   -->
<hibernate-configuration>

<session-factory>
    <property name="connection.username">root</property>
    <property name="connection.url">
        jdbc:mysql://localhost:3306/schoolproject?characterEncoding=gb2312&amp;useUnicode=true
    </property>
    <property name="dialect">
        org.hibernate.dialect.MySQLDialect
    </property>
    <property name="myeclipse.connection.profile">mysql</property>
    <property name="connection.password">1234</property>
    <property name="connection.driver_class">
        com.mysql.jdbc.Driver
    </property>
    <property name="hibernate.dialect">
        org.hibernate.dialect.MySQLDialect
    </property>
    <property name="hibernate.show_sql">true</property>
    <property name="current_session_context_class">thread</property>

    <property name="hibernate.cache.provider_class">
            org.hibernate.cache.EhCacheProvider
        </property>
    <mapping resource="EHCache/Student.hbm.xml" />
    <mapping resource="EHCache/Team.hbm.xml" />

</session-factory>

</hibernate-configuration>EHCache.xml(放在classpath下)



<ehcache>


    <diskStore path="c:/cache"/>  <!--缓存文件存放位置-->

    <defaultCache
        maxElementsInMemory="10000"
        eternal="false"
        timeToIdleSeconds="120"
        timeToLiveSeconds="120"
        overflowToDisk="true"
        />

    <cache name="EHCache.Student"
        maxElementsInMemory="500"    <!---超过500实例,就将多出的部分放置缓存文件中->
        eternal="false"
        timeToIdleSeconds="120"
        timeToLiveSeconds="120"
        overflowToDisk="true"
        /> -->

    <!-- Place configuration for your caches following -->

</ehcache>


测试代码(插入准备数据部分)



package EHCache;

import java.io.File;
import java.util.List;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;

public class Test ...{


    public static void main(String[] args) ...{
        String filePath=System.getProperty("user.dir")+File.separator+"src/EHCache"+File.separator+"hibernate.cfg.xml";
        File file=new File(filePath);
        SessionFactory sessionFactory=new Configuration().configure(file).buildSessionFactory();
        Session session=sessionFactory.openSession();
        Transaction tx=session.beginTransaction();
       
//        Team team=new Team();
//        team.setTeamName("team1");
//       
//       
//        for(int i=0;i<1000;i++){
//            Student stu=new Student();
//            stu.setName("tom"+i);
//            stu.setTeam(team);
//            session.save(stu);
//        }
//        tx.commit();
//       

    }

}


测试成功后,运行以下代码



package EHCache;

import java.io.File;
import java.util.List;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;

public class Test ...{


    public static void main(String[] args) ...{
        String filePath=System.getProperty("user.dir")+File.separator+"src/EHCache"+File.separator+"hibernate.cfg.xml";
        File file=new File(filePath);
        SessionFactory sessionFactory=new Configuration().configure(file).buildSessionFactory();
        Session session=sessionFactory.openSession();
        Transaction tx=session.beginTransaction();
       
   
        //模拟多用户访问数据
        Session session1=sessionFactory.openSession();
        Transaction tx1=session1.beginTransaction();
        List list=session1.createQuery("from Student").list();
        for(int i=0;i<list.size();i++)...{
            Student stu=(Student)list.get(i);
            System.out.println(stu.getName());
        }
        tx1.commit();
        session1.close();   
   
        Session session2=sessionFactory.openSession();
        Transaction tx2=session2.beginTransaction();
            //这个uuid从刚才插入的数据中复制一个student的id
        Student stu=(Student)session2.get(Student.class, "4028818316d184820116d184900e0001");
        System.out.println(stu.getName());
        tx2.commit();
        session2.close();
    }

}


结果如下:

log4j:WARN No appenders could be found for logger (org.hibernate.cfg.Environment).
log4j:WARN Please initialize the log4j system properly.
Hibernate: select student0_.id as id0_, student0_.name as name0_, student0_.team_id as team3_0_ from studentEH student0_
Hibernate: select team0_.id as id1_0_, team0_.teamName as teamName1_0_ from teamEH team0_ where team0_.id=?
tom0
tom1
tom2
tom3
tom4
tom5
tom6
tom7
tom8
tom9
tom10
........................................

tom974
tom975
tom976
tom977
tom978
tom998
tom999
Hibernate: select team0_.id as id1_0_, team0_.teamName as teamName1_0_ from teamEH team0_ where team0_.id=?
tom0



可以看到,第二次查询,已经不再访问数据库了,而且,查看c:/cache文件夹,也可以看到,数据已经缓存成功了

分享到:
评论

相关推荐

    Hibernate EhCache 二级缓存配置.docx

    EhCache 缓存插件是 Hibernate 框架内置的,对于单机应用推荐使用它做为 Hibernate 的二级缓存。 二、环境配置 要使用 EhCache 二级缓存,需要进行以下环境配置: 1. 安装 MySql 5.0 数据库 2. 安装 Hibernate ...

    Ehcache二级缓存.zip

    在这个"Ehcache二级缓存.zip"压缩包中,可能包含了实现Ehcache二级缓存的相关文件,如jar包、配置文件和文档等。 1. **Ehcache二级缓存**:在Java应用中,一级缓存通常指的是JVM内的内存缓存,而二级缓存则可以是...

    Hibernate+ehcache二级缓存技术

    Hibernate+ehcache二级缓存技术 Hibernate+ehcache二级缓存技术

    hibernate整合ehcache的jar包.zip

    - **配置Hibernate**:在hibernate.cfg.xml或对应的配置文件中,启用二级缓存并指定使用Ehcache。 - **实体类注解**:在需要缓存的实体类上添加`@Cacheable`、`@Cache`等注解,定义缓存行为。 - **SessionFactory...

    struts2+hibernate+ehcache二级缓存

    在提供的压缩包文件中,可能包含了Struts2、Hibernate和Ehcache的配置示例,以及相关的代码片段,用于演示如何集成和使用这些组件实现二级缓存。开发者可以通过分析这些文件,了解具体的实现细节,并在自己的项目中...

    hibernate4.0使用二级缓存jar包

    ehcache 二级缓存 配置使用的jar包 配置如下: &lt;!-- 启用二级缓存 --&gt; &lt;property name="hibernate.cache.use_second_level_cache"&gt;true &lt;!-- 查询的二级缓存配置 --&gt; &lt;property name="hibernate....

    hibernate+ehcache

    一级缓存是每个 Hibernate Session 的私有缓存,而二级缓存则可以跨 Session 共享,Ehcache 就是常见的二级缓存实现。 7. **事务管理**:在整合 Hibernate 和 Ehcache 时,必须注意事务管理,确保缓存与数据库的...

    Hibernatehibernate二级缓存.pdf

    在本文档中,我们探讨了Hibernate框架中的二级缓存机制。二级缓存是Hibernate提供的一种优化数据库访问性能的策略,它允许将数据存储在进程级别的缓存中,以便多个Session能够共享这些数据,从而减少对数据库的直接...

    hibernate-ehcache-4.1.4.Final.zip

    【标题】"hibernate-ehcache-4.1.4.Final.zip" 提供的是Hibernate ORM框架的一个版本,其中集成了Ehcache作为二级缓存解决方案。Hibernate是一个流行的Java对象关系映射(ORM)工具,它允许开发人员将数据库操作转化...

    hibernate缓存ehcache用法

    Ehcache是Hibernate常用的二级缓存解决方案,它可以提高应用程序的性能和响应速度。这篇博客文章“hibernate缓存ehcache用法”可能详细介绍了如何在Hibernate中配置和使用Ehcache。 首先,我们需要理解什么是缓存。...

    Spring集成的Hibernate配置二级缓存

    以EhCache为例,我们需要在项目中引入ehcache-core或ehcache的依赖,并在Hibernate配置文件(hibernate.cfg.xml或persistence.xml)中启用二级缓存,添加如下配置: ```xml &lt;property name="hibernate.cache.use_...

    为Spring集成的Hibernate配置二级缓存

    5. **实体类注解**:为了让Hibernate知道哪些实体类需要使用二级缓存,可以在实体类上添加`@Cacheable`注解,并指定缓存区域。例如: ```java @Entity @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) public...

    配置EhCache二级缓存

    ### 配置EhCache二级缓存 #### 一、简介 EhCache是一个高性能、易于使用的开源缓存系统,最初由 Terracotta 组织开发。它支持多种缓存模型,包括本地缓存和分布式缓存。由于其简单易用且功能强大,EhCache 成为了 ...

    Hibernate4二级缓存Ehcache案例

    Ehcache是Java中广泛使用的内存缓存库,它支持内存和磁盘缓存,具有高效的缓存管理和数据持久化能力,因此被选为Hibernate的二级缓存提供商。要使用Ehcache,我们首先需要在项目中引入Ehcache的依赖。在Maven项目中...

    hibernate4配置二级缓存

    通过以上步骤,你就可以成功地在Hibernate4项目中配置并使用Ehcache作为二级缓存。不过,需要注意的是,二级缓存并不能保证数据的一致性,因为它是异步更新的。在某些需要强一致性的场景下,可能需要谨慎使用或结合...

    springboot+jpa(hibernate配置redis为二级缓存) springboot2.1.4

    通过以上步骤,我们就成功地在Spring Boot 2.1.4.RELEASE项目中配置了使用Redis作为Hibernate二级缓存的环境。这将显著提升数据库查询效率,减少对数据库的压力,尤其在高并发场景下,效果尤为明显。记得在实际生产...

    Hibernate二级缓存架包.rar

    要使用Hibernate的二级缓存,首先需要选择一个缓存提供商,如Ehcache、Infinispan等。然后在Hibernate配置文件(hibernate.cfg.xml)中添加相应的配置,包括设置缓存插件、指定缓存区域、缓存策略等。 例如,对于...

    hibernate一级缓存和二级缓存的区别与联系

    二级缓存可以是内存中的缓存,也可以扩展到硬盘,例如使用第三方缓存提供商(如 EhCache 或者 Infinispan)。二级缓存中存储的是对象的集合数据,而不是单个对象实例,这样可以更高效地处理大量数据。二级缓存可以...

    Hibernate + EhCache 实现数据缓存的处理

    - 第二级缓存:SessionFactory实例间的共享缓存,跨Session存储数据,提高多个并发请求的效率。 4. **缓存更新与失效** - 更新策略:当数据发生变化时,需要同步更新缓存,可以使用`@CacheEvict`注解实现缓存的...

Global site tag (gtag.js) - Google Analytics