我想知道在JavaEE 6中捕获OptimisticLockException的最佳方法是什么。我具有以下EJB:

@Stateless
public class SeminarBooking {

public void bookSeminar(Long seminarId, int numberOfPersons) {
    ...
    //check capacity & do booking
    //OptimisticLockException can occur in this method
}


这是我的REST接口:

@Path("/seminars")
@Produces("application/xml")
@Stateless
public class SeminarResource {

    @GET
    @Path("{id}/book")
    public Seminar bookSeminar(@PathParam("id") Long id, @QueryParam("persons") Integer persons) {
        try {
            seminarBooking.bookSeminar(id, persons);
            return seminarBooking.getSeminar(id);
        }
        catch(Exception e) {
            //why is this never called?
            logger.error(This will never happen, e);
            throw new WebApplicationException(e);
        }
}


在REST接口中,我捕获了所有异常,此外,如果我从浏览器中调用该接口,还会看到OptimisticLockException,那么为什么catch-Block从未执行过?

最佳答案

显而易见的答案是,该try块中未引发有问题的异常。尝试读取堆栈跟踪以查看它从何处抛出。考虑到它与持久性有关,它很可能会扔到您的事务边界,而不是您认为的地方。

09-15 22:13