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.

link|improve this question

65% accept rate
feedback

2 Answers

I can't recall seeing it in the spec, but that's the way proxies work. But anyway this is related to transaction propagation - whether invoking a transactional method with an existing running transaction should start a new transaction or not.

Get Seam 3 persistence module (with transaction support)

link|improve this answer
1  
but that's the way proxies work - indeed. It's the same in EJB. If a bean calls its own methods, they do not go through the proxy. So if a method with transaction attribute not-supported calls its own method with transaction attribute required, no TX will be started which can be somewhat confusing. – Arjan Tijms Aug 7 '11 at 20:31
Ad Seam 3 - this Java SE app, so I implemented simple transaction propagation myself. – Ondra Žižka Aug 8 '11 at 5:32
feedback

The 2nd "internal" call is not via a contextual reference anymore, so it's not intercepted.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.