EJB interceptor implementation

In this section, we will look at an example of the original EJB interceptor implementation.

Suppose that there is a stateless session EJB, such as AcademicFacadeImpl, as well as a business method called testReview. This method is responsible for scheduling a student test review. Let's say that we want to know, statistically, which students have made the most test review requests. We could do this within the business code, but that is not what we want. Instead, we want to separate statistic logic from business logic statistics—we want a statistic interceptor. 

First of all, we will create an EJB target class named AcademicFacadeImpl (this class was already created in the last chapter). In the beginning, there ...

Get Java EE 8 Design Patterns and Best Practices now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.