1. Wicket, authentication and transaction demarcation stackoverflow.comI am using Wicket with a custom PageAuthorizationStrategy which accesses the database for information on the current user and thereby his access permissions. Every request is wrapped by the Spring Open-Session-In-View ... |
2. Issue with transaction demarcation and hibernate forum.springsource.orgIssue with transaction demarcation and hibernate I'm observing some behavior with my spring/hibernate implementation, regarding how my transactions are configured, that I don't quite understand. First, I have a method (non-transactional) ... |
3. Transaction Demarcation within same Service Object forum.springsource.orgTransaction Demarcation within same Service Object I'm having issues with transaction demarcation within a single Spring-managed object. Specifically, one method within an object needs to call another method in the same ... |
4. is transaction demarcation necessary? forum.springsource.orgYes... You want your business methods to be transactional. If you wouldn't then every operation on your dao would start a new transaction and afterwards commit/rollback. Instead of rollingback/committing everything in ... |
5. Transaction demarcation question forum.springsource.orgTransaction demarcation question Hello there! I have a question regarding transactions. Please correct me if I'm wrong. Using SpringTransactionalProxyBean, spring commits the transaction only at the end of the invocation stack ... |
6. Transaction demarcation on multiple levels? forum.springsource.orgTransaction demarcation on multiple levels? I'm buildling what I think is a farily standard web application with spring/springmvc/hibernate/mysql. As a part of the design I'm using annotation driven transaction demarcation at ... |
7. Are transaction demarcation at multiple levels inappropriate? (For Juergen Hoeller) forum.springsource.orgAre transaction demarcation at multiple levels inappropriate? (For Juergen Hoeller) Hi, I've just read the following post http://forum.springframework.org/showthread.php?t=26574 where Juergen Hoeller says that having transaction demarcation at multiple levels is inappropriate ... |
8. transaction demarcation forum.springsource.orgtransaction demarcation My question relates to when the HibernateTransactionManager will actually begin a Transaction with it's associated SessionFactory. If I use a TransactionProxy around my service, will the TransactionProxy establish the ... |
9. transaction demarcation: where? forum.springsource.orgThat is correct. You want your business/service method to be transactional and not only your data access. Especially not when you do multiple data calls inside your service method. |
10. Problem with manual transaction demarcation technique forum.springsource.orgProblem with manual transaction demarcation technique Hi, I would like to share my problem, perhaps there is an easy solution or there is better way of doing what I'm trying to ... |