If you're deploying an unexploded war file, make sure you have set the context parameter "log4jExposeWebAppRoot" to false, otherwise the Log4jConfigurer will throw an exception while trying to get...
Type: Posts; User: freemant; Keyword(s):
If you're deploying an unexploded war file, make sure you have set the context parameter "log4jExposeWebAppRoot" to false, otherwise the Log4jConfigurer will throw an exception while trying to get...
Sorry for not being clear. I know how to set the isolation level with @Transactional, but I'd like to set the default isolation level so that I don't need to do it with each use of @Transactional. I...
Hi,
I am using a transaction manager and using @Transactional to mark some methods. This is working fine. The connection is closed at the end of the transaction. But what if there is a...
Hi,
I know that one can set the default isolation level using <tx:advice>, but I am using @Transactional annotations and don't know how to achieve the same effect. Thanks for any info!