Example of @Where in Hibernate

Stella981
• 阅读 574

@Where in hibernate can be applied at entity level. With the help of @Where , we can use where class to fetch the data. The entity will be populated only for those data for which @Where clause returns true. Find the example below. Find the example.

State.java

package com.concretepage.persistence;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import org.hibernate.annotations.Where;

@Entity
@Table(name = "state")
@Where(clause="id>1") 
public class State  implements Serializable{
    private static final long serialVersionUID = 1L;
    @Id
    @Column(name = "id")
    private int id;
    @Column(name = "name") 
    private String name;
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
}

HibernateUtil.java

package com.concretepage.util;
import java.util.List;
import java.util.Properties;
import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.AnnotationConfiguration;
import com.concretepage.persistence.State;
public class HibernateUtil {
    private static final SessionFactory concreteSessionFactory;
        static {
         try {
                Properties prop= new Properties();
                prop.setProperty("hibernate.connection.url", "jdbc:mysql://localhost:3306/hibernate");
                prop.setProperty("hibernate.connection.username", "root");
                prop.setProperty("hibernate.connection.password", "");
                prop.setProperty("hibernate.hbm2ddl.auto", "update");
                prop.setProperty("dialect", "org.hibernate.dialect.MySQLDialect");
                
                concreteSessionFactory = new AnnotationConfiguration()
               .addPackage("com.concretepage.persistence")
                       .addProperties(prop)
                       .addAnnotatedClass(State.class)
                       .buildSessionFactory();
          } catch (Throwable ex) {
            throw new ExceptionInInitializerError(ex);
          }
        }
        public static Session getSession()
                throws HibernateException {
            return concreteSessionFactory.openSession();
        }
        public static void main(String... args){
            Session session=getSession();
            List<State> states = session.createCriteria(State.class).list();
            for(State s: states){
                System.out.println(s.getId()+" "+s.getName());
            }
            session.close();
       }
    }

Table: state

 1  UP 
 2  MP 
 3  HP

Output

 2 MP 
 3 HP

As we can see that in the table there are three rows but we got only two rows. This is because of @Where clause applied on the entity as @Where(clause="id>1")

点赞
收藏
评论区
推荐文章
待兔 待兔
3个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Wesley13 Wesley13
3年前
java 短信接口开发之获取当前网络IP地址工具类
publicclassIpAddress{   /\\    \获取当前网络ip    \@param(http://my.oschina.net/u/2303379)request    \@return(http://my.oschina.net/u/556800)    \/
Stella981 Stella981
3年前
Linux中的Pipe和FIFO的原理浅析
之前从编程角度写过Linux的Pipe和FIFO,主要侧重于使用,附带了简单的原理介绍。(链接如下)http://my.oschina.net/u/158589/blog/54705(http://my.oschina.net/u/158589/blog/54705)http://my.oschina.net/u/158589/blog
Stella981 Stella981
3年前
Angular相关内容学习总结
一、angular项目搭建1、前端框架Yeoman(http://my.oschina.net/u/1416844/blog/196199) http://my.oschina.net/u/1416844/blog/196199二、angular结构划分angular经典的架构和目
Wesley13 Wesley13
3年前
d语言
\我的博客http://my.oschina.net/u/218155/blog?fromerrSwOkb7Sw(http://my.oschina.net/u/218155/blog?fromerrSwOkb7Sw)fllowmestd.net.curld语言的网路curl库,提供更高级的服务。依赖libcurl。\
Wesley13 Wesley13
3年前
oracle游标的例子
declare    cursor ca is select id_no, name from user where ym201401;begin    for cb in ca loop        update path set enamecb.name where id_nocb.id
Stella981 Stella981
3年前
From表单提交的几种方式
<body<formaction"https://my.oschina.net/u/3285916"method"get"name"formOne"id"formId"name:<inputtype"text"name"name"pwd:<inputtyp
Stella981 Stella981
3年前
OC语言@property @synthesize和id
OC语言@property @synthesize(http://my.oschina.net/u/2618113)和id一、@property @synthesize(http://my.oschina.net/u/2618113)关键字注意:这两个关键字是编译器特性,让xcode可以自动生成getter和setter的
Wesley13 Wesley13
3年前
PHP身份证号验证
  /\\   \Checkperpin   \   \@param string $pin   \@return(http://my.oschina.net/u/556800) array   \/publicfunctioncheckPerPin($pin){ 
Wesley13 Wesley13
3年前
d语言之模块化
d语言之模块化参考自d程序设计语言我的博客http://my.oschina.net/u/218155/blog?fromerrSwOkb7Sw(http://my.oschina.net/u/218155/blog?fromerrSwOkb7Sw)fllowmemodule chapter11.test;impo