1

我正在为我的服务EJB3无状态 bean 使用以下模式。基本上,每个数据库表都通过一个DAO / 外观类型类(本身也是一个无状态EJB3 bean)公开。

然后将我假设的 AService bean 注入它需要使用的各种数据库表的外观。但是,外观中没有提供某些更复杂的逻辑或逻辑(它们专门用于一个表上的 CRUD 类型的操作)。出于这个原因,我还直接注入了DataSource,这样我就可以将JDBC用于更复杂的查询。

在我的方法中是否有任何明显或微妙的反模式/警告?

 @Stateless
 @Local (IAService.ILocal.class)
 @Remote(IAService.IRemote.class)
 public class AService implements IAService.ILocal, IAService.IRemote{

     @PersistenceContext(unitName = "cashflowPU")
     private EntityManager em;

    // inject CRUD facades for straightforward operations
    @EJB
    private ITableAFacade.ILocal tgAFacade;
    ...

    // inject the data source for non-straightforward operations that require JDBC
    @Resource(mappedName="java:/cashflow") DataSource dataSource;


    public BigDecimal methodThatNeedsComplexQuery (...params) throws SQLException {
        Connection conn = null;
        BigDecimal retValue = null;
        try {
             conn = dataSource.getConnection();
             PreparedStatement pstm = ...
             ResultSet rs = pstm.executeQuery(); ...
             while (rs.next()) ...
        } finally {
             conn.close();
             return retValue;
        }
    }                                                      
}                                                          
4

1 回答 1

2

您也可以使用 EntityMangaer.createNativeQuery(String sqlString) 而不是注入数据源。

于 2012-11-15T16:23:58.727 回答