Spring's JdbcTemplate and Transactions

68,051

Solution 1

Yes, JdbcTemplate is not a substitute for transaction management. You still benefit from database transactions, so userService.updateUser will operate in a database transaction, but if accountService.updateXXX fails, userService.updateUser will not rollback.

If you don't want to use AOP, you can use TransactionTemplate instead. See programmatic transaction management in the Spring Reference Documentation.

One pattern I've seen before is for the MVC controller class to invoke a business service, which encapsulates the operation. The method of the business class could then be annotated @Transactional.

Solution 2

If your controller wants to do several things with users and accounts and have all that happen within one transaction, then you should have a service with one method that does all that stuff. Creating one service per DAO is not a great idea, because you end up with do-nothing wrappers around DAOs and processing will be slow because the database will have to create a separate transaction for each call to a DAO, you're making it do a lot more work than it should have to.

The service should provide functionality to the controller or whoever else is calling it. I try to create services with the idea that the service provides specific functions useful to a certain type of user.

Share:
68,051

Related videos on Youtube

loyalflow
Author by

loyalflow

it is all about you!

Updated on July 09, 2022

Comments

  • loyalflow
    loyalflow almost 2 years

    When using JdbcTemplate, do I need to explicitly configure transactions?

    My code layout looks like the following:

    I will have a UserDao that will be injected into my UserService, and then my Controllers will make calls on methods in my UserService.

    I want to keep things as simple as possible transaction wise, and I don't need multiple database calls to span a transaction.

    By default, do I have to do anything in my configuration file or use a @Transaction annotation anywhere?

    Now say in my controller I need to make 2 calls on my userService and accountService, could I explicitly wrap it in a transaction somehow?

    userService.updateUser(user);
    accountService.updateXXX(...);
    
  • loyalflow
    loyalflow over 11 years
    wow, that's allot of code for a transaction, @Transactional sure makes it less boilerplate to write!
  • David Grant
    David Grant over 11 years
    It is, but it's quite useful if you need to access the TransactionStatus.
  • xdhmoore
    xdhmoore almost 10 years
    +1 for the business service idea. IMHO, life would be easier if everyone did this.
  • xdhmoore
    xdhmoore almost 10 years
    +1 seconded. This makes several things easier, including testing, and makes it easy if you need to expose any functionality to another view other than a controller (a REST API, for example).
  • deFreitas
    deFreitas over 6 years
    I just want to know how PlatformTransactionManager make a relationship with jdbcTemplate, because they have a Datasource
  • User
    User over 4 years
    How to use AOP with jdbcTemplate? I seen some examples with require a JpaTransactionManager depdendency, but is JPA correct for jdbcTemplate?