我有一块Java代码,它对如下所示的休眠析取查询进行硬编码

session = HibernateUtils.beginTransaction("outpatient");
        Criteria criteria = session.createCriteria(AugmentToken.class);
        session.beginTransaction();
        if (type == Constants.ICD9CPT) {
            criteria.add(Restrictions.disjunction()
                    .add(Restrictions.eq("codeType", "d"))
                    .add(Restrictions.eq("codeType", "p"))
                    .add(Restrictions.eq("codeType", "c")));
        } else if (type == Constants.EM) {
            criteria.add(Restrictions.disjunction()
                    .add(Restrictions.eq("codeType", "eros"))
                    .add(Restrictions.eq("codeType", "ehpi"))
                    .add(Restrictions.eq("codeType", "epe")));
        }


但这不是很优雅的代码。我想做的是将一个代码类型数组传递给一个方法,并动态地构造二合标准。我浏览的每个网站都提供了类似上面的析取查询的示例,但这对我来说不起作用,因为我不希望对标准限制的构造进行硬编码,因为代码类型的数量会有所不同。

我该怎么做呢?

谢谢,

艾略特

最佳答案

我想我明白了。您将析取函数创建为变量,然后顺序添加。
特别:

 String [] codeTypes = new String[3];
 codeTyes[0]="d";
 codeTypes[1]="p";
 codetypes[2]="c";
 /* note the above would normally be passed into the method containing the code below */
 Criteria criteria = session.createCriteria(AugmentToken.class);
    session.beginTransaction();
 Disjunction disjunction = Restrictions.disjunction();
 for (int x = 0; x < codeTypes.length; x++ ) {
  disjucntion.add(Restrictions.eq("codeType",codeTypes[x]);
 }
 criteria.add(disjunction);


我在第214页的“开始休眠”中找到了答案。可从books.google.com上访问该书。

09-09 20:55