• 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

urgent pls : common information for ejbs

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hallo
in my application i ve about 30 ejb, and i have some informations which are common to all ejb (log configuration ...), is there any way in the ejb-jar.xml to centralize these informations instead of configuring them inside each ejb

Thanks
 
Sheriff
Posts: 5782
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Use the <env-entry> tag in ejb deployment descriptor (ejb-jar.xml) and consolidate all the global settings under one LookupBean.


Later that thse settings can be obtained in the bean using the lookup()
method.


This will allow you to centralize all the configuration lookup functionality in one place. Other beans/consumers in your system will simply call the appropriate metho on the LookupBean when they need to obtain some configuration information.

HTH
reply
    Bookmark Topic Watch Topic
  • New Topic