EJB2 FinderException是否需要引发事务?

时间:2019-04-29 13:45:13

标签: ejb

我正在使用容器管理的持久性,并且想知道FinderException是否可以被以下代码捕获:

public File getFileData(String fileNumber) throws FinderException {

    try {
        FileHome fileHome = this.getFileHome();
        File file = fileHome.findByPrimaryKey(fileNumber);

        return file ;

    } catch (FinderException finderException) {
        //do something
    }
    return null;
}

0 个答案:

没有答案