• 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

EJB3 global data storage

 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I'm looking for best solution for my app. I'm implementing EJB3 module, where I need to manage some global data, which are dynamically changed during application run. For example lets say this is ejb module for IM server. So I need to store some collections with actually logged users (with various info like status and so on). And then approach to that data from web module.

- What solution would you recommend for implementation on the server?
- If using EJB3, is there any choice how to use something like observer design pattern between web and ejb module? Or ejb is just request/response so I need polling method? E.g. I need to send some kind of notifications between users.

Thanks everyone:-)
 
Zdenek Obst
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I heard that JMX MBeans are be good for storing data like that. Is it right? I dont know that api..
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic