• Post Reply 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

EJB calling syncronized method

 
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello!

Does anybody knows is it allowed to call syncronized method from EjbBean(sync method in other object, not in ejb)?

My problem is the following: the database table has rows.
An operator uses GUI to get rows from db to browse, then can modify any single row(also do some other things).

Many operators are working with GUI, so 2 operators can browse the same rows, but one row can be modified by one operator only.
I use EJB to get & modify rows. My web module calls EJB to perform fetching and modification.

The problem is when EJB instance(operator1) is modifing some DB record, the other EJB instance(operator2) overwrite the changes.

The solution can be to place modification logic to syncronized method, so this method will be called from multiple EJB instances.
Is it allowed?
Any other ideas?

I use EJB 2.1.

Thanks.
 
Ranch Hand
Posts: 66
VI Editor Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
https://coderanch.com/t/319884/EJB-JEE/java/EE-specifications-synchronized-keyword - does this answer your question?
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic