Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Spring Integration In AcStion - another question

 
Ranch Hand
Posts: 69
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
I am using spring for my current project - taught myself - from books and articles -
However, have not seen a very good / clear - (hands on?) explanation of Spring Transactions
(I am using spring+hibernate)...
In particular, I need to know how solve the db isolation/concurrency issues - any patterns around these...
(Hibernate versioning is one way to go) - but in general would be lovely to have something here...

I have googled for the same (have the free infoq book) - but somehow have not found any real nice stuff

--- atul
 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Your question isn't about the Spring Integration in Action book, it is about Core Spring.

"how solve the db isolation/concurrency issues"

What issue are you referring to? When you talk about Hibernate Versioning that is optimistic locking, which isn't really a Transaction think. It is slightly related, but not something any explanation of Spring Transaction covers. Spring Transaction will allow you to set an IsolationLevel, but that just recommends to the database any possible locks on the database rows or tables.

I need to change the topic of your thread as it is misleading.

Thanks

Mark
 
atul khot
Ranch Hand
Posts: 69
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Hi Mark,
I was thinking of Spring integration with Hibernate - Apologies if this was not the right header...
Will ask the question under an appropriate header...

- thanks atul

 
Mark Spritzler
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator

atul khot wrote:Hi Mark,
I was thinking of Spring integration with Hibernate - Apologies if this was not the right header...
Will ask the question under an appropriate header...

- thanks atul



Integrating Hibernate in Spring is one topic, but again not about Spring Integration in Action book. In you code you might be using Hibernate, but it isn't a concern of Spring Integration.

So why is the topic title changed back to what I set it to?

I see you just started a new thread. So I am going to close this thread.

Mark
    Bookmark Topic Watch Topic
  • New Topic