我碰巧找到了使用这种结构的例子,但我不确定我能从中得到什么?
这是否意味着无状态 EJB 中的所有选择语句都应该遵循这个?
@Stateless
public class EmployeeFacade {
@PersistenceContext(unitName="EmployeeService")
EntityManager em;
@TransactionAttribute(TransactionAttributeType.NOT_SUPPORTED)
public List<Department> findAllEmployees() {
return em.createQuery("SELECT e FROM Employee e",
Employee.class)
.getResultList();
}
我能从中得到什么?
谢谢。