I wonder what is the best way to catch an OptimisticLockException in JavaEE 6. I have the following EJB:
@Stateless
public class SeminarBooking {
public void bookSeminar(Long seminarId, int numberOfPersons) {
...
//check capacity & do booking
//OptimisticLockException can occur in this method
}
And this is my REST interface:
@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);
}
}
In the REST interface I catch all Exceptions, furthermore I see the OptimisticLockException if I call the interface from the browser, so why is the catch-Block never executed?