| Author |
Properties file in EJB Ear
|
Karthik Rajendiran
Ranch Hand
Joined: Aug 13, 2004
Posts: 209
|
|
Hello Friends, I have a simple question to all. I am developing a MDB. I have some configuration things and application related properties in a file config.properties. Normally in web application war, to make servlet or any java class file to read this we can keep in web-inf classes But for EJB, where to keep such properties file to be read by ejb in ear. I Kept in a folder called resources/ in ear root itself and gave the path in manifest.mf of ejb.jar as Classpath: resources/ But i am not able to pick it up. May i know the right approach for the same
|
SCJP 1.4 SCWCD 1.4 SCDJWS 1.4
|
 |
Scott Selikoff
Saloon Keeper
Joined: Oct 23, 2005
Posts: 3652
|
|
|
Take a look at the method getResourceAsStream, it's useful for reading property files from within JARs.
|
My Blog: Down Home Country Coding with Scott Selikoff
|
 |
 |
|
|
subject: Properties file in EJB Ear
|
|
|