使用JPA / EclipseLink中的find API获取非附加对象

时间:2015-11-15 10:01:35

标签: jpa eclipselink

我希望找到一个带有find的非附加对象 类似于我从命名查询获得的“eclipselink.read-only”提示 有没有办法做到这一点,或者我需要通过id编写命名查询并使用提示?

1 个答案:

答案 0 :(得分:1)

您可以将查询提示传递给find method,允许您传递“eclipseLink.read-only”提示:

HashMap props = new HashMap();
props.put("eclipselink.read-only", "True");
em.find(class, id, props);