Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

am I right that combination of @TransactionManagement(TransactionManagementType.BEAN) with any settings of @TransactionAttribute on SessionBean has no sense?

@Stateless
@TransactionManagement(TransactionManagementType.BEAN)
@TransactionAttribute([any possible value of TransactionAttributeType])
public class SomeSessionBean {
    ....
}

I cannot find this in any documentation.

share|improve this question

1 Answer

up vote 2 down vote accepted

http://download.oracle.com/javaee/6/api/javax/ejb/TransactionAttribute.html

The TransactionAttribute annotation specifies whether the container is to invoke a business method within a transaction context. The TransactionAttribute annotation can be used for session beans and message driven beans. It can only be specified if container managed transaction demarcation is used.

share|improve this answer
1  
I should be ashamed not to look into API. Thank you. – Fekete Kamosh Feb 11 '11 at 6:50
I spent 5-10 minutes searching through the spec and couldn't find anything until it occured to me to check the javadoc :-). – bkail Feb 11 '11 at 6:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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