Hi ,
I the process of Learning
EJB Interceptors . I came across
The interceptor method runs before any of the bean's business methods are invoked.
In essence , interceptors give you a way to add functionality to your business methods without modifying the methods' code. For example, you can use an interceptor to validate parameters before they're passed to a business method, or perform security checks at the time the business method is called.
As per my thinking these tasks can be achivied using @PostConstruct callback methods know .
so please tell me when to use Interceptors and Callback methods ??