zoukankan      html  css  js  c++  java
  • Hibernate 缓存 关于注解方式

    要引入

    import org.hibernate.annotations.Cache;

    在类前面添加:

    @Cache(usage= CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)

    可选项有:

    • read-only

    • read-write

    • nonstrict-read-write

    • transactional

    完整示例:

    package com.hlcg.main.bean;
    
    
    import org.hibernate.annotations.Cache;
    import org.hibernate.annotations.CacheConcurrencyStrategy;
    
    import javax.persistence.*;
    
    /**
     * Created with IntelliJ IDEA.
     * User: HYY
     * Date: 13-10-20
     * Time: 下午1:04
     * To change this template use File | Settings | File Templates.
     */
    @Entity
    @Table(name = "hl_key_value")
    @Cache(usage= CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
    public class KeyValue {
        private Integer id;//主键
        private String key;
        private String value;
        private Integer type;//类型
        private String description;//描述、简介
    
    
        @Id
        @SequenceGenerator(name = "increment")
        @GeneratedValue(strategy = GenerationType.AUTO, generator = "increment")
        public Integer getId() {
            return id;
        }
    
        public void setId(Integer id) {
            this.id = id;
        }
    
        @Column(name = "`key`", unique = true,nullable=false, length = 200)
        public String getKey() {
            return key;
        }
    
        public void setKey(String key) {
            this.key = key;
        }
    
    
        @Column(name = "`value`", length = 3000)
        public String getValue() {
            return value;
        }
    
        public void setValue(String value) {
            this.value = value;
        }
    
        @Column(name = "`type`")
        public Integer getType() {
            return type;
        }
    
        public void setType(Integer type) {
            this.type = type;
        }
    
        @Column(length = 300)
        public String getDescription() {
            return description;
        }
    
        public void setDescription(String description) {
            this.description = description;
        }
    }

    注意key,value都是数据库的关键字 要加上``才行。

  • 相关阅读:
    python简介
    计算机基础
    C# 验证数字
    在字符串指定的索引下添加字符,输出换行
    js中实现子页面向父页面中赋值
    js搜索相同类型的控件全选、取值(Checkbox)
    Nhibernate中多Or条件的查询,很多Or的查询
    js遍历checkbox获取数据
    Jquery获取web窗体关闭事件,排除刷新页面
    两年多的工作感悟
  • 原文地址:https://www.cnblogs.com/wuyou/p/3444028.html
Copyright © 2011-2022 走看看