If I have methods
public List<IrcEvent> getEventsByCriteria(IrcEventCriteria crit, boolean descending) {
return getEventsByCriteria(crit, 0, Integer.MAX_VALUE, descending);
}
@JpaTransactional
public List<IrcEvent> getEventsByCriteria(IrcEventCriteria crit, int first, int count, boolean descending) {
...
}
then the first method must be also annotated @JpaTransactional right?
I just found out that when a bean calls its own intercepted method, then the interceptor is not triggered. I assume that's because it's not the proxy called, but the "real instance" itself, thus it does not go through the proxy.
Is this covered by the spec / docs? I didn't find it yet. I ask because I want to be sure that if I annotate all public methods, they will not start calling interceptors multiple times in the future.