What happens if a transactional method with certain transaction attributes call a method at the same bean with different transaction attributes?
|
|
With standart transactional configutration in Spring nothin will happen. From documentation (look in reference documentation for full explanation of declarative transaction management):
If you need to change transactional behaviour (propagation, read only status and etc.) using a method call at the same bean you can change transaction mode to AspectJ and using compile time wieving (look here how to do this). But I have never do this in real practice, just for test. Usually it is enough default transactional settings. |
||||
|
|
|
@Transactional's readOnly attributes has below exception:
If you call the method like this, and you use Hibernate or other ORM platform:
will throw read only connection exception. |
|||||||||
|