是否可以使用JPA Criteria API调用实体类的方法?

时间:2019-05-26 11:50:25

标签: java hibernate jpa criteria-api hibernate-5.x

package com.surya.dto;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

@Entity
@Table(name = "department")
public class Department {

    @Column
    @Id
    private int dept_id;

    @Column
    private String dept_name;

    public int getDept_id() {
        return dept_id;
    }

    public void setDept_id(int dept_id) {
        this.dept_id = dept_id;
    }

    public String getDept_name() {
        return dept_name;
    }

    public void setDept_name(String dept_name) {
        this.dept_name = dept_name;
    }

    public void sayHelloDepartment() {
        System.out.println("Hello Department");
    }
}

是否可以使用JPA的Criteria API调用方法 sayHelloDepartment()。 这是一个示例代码,遇到一种情况,我想使用JPA Criteria API从我的存储库类中调用实体类中的方法。

0 个答案:

没有答案