Hi..i have a few properties file which i want to share in different projects (these all projects run in same app server). i am putting thse files in my classpath as in
<value>classpath*:/**/mydirpath.props</value>
so that now when i create a ClasspathXMLApplicationContext object ApplicationContext context = new ClasspathXMLApplicationContext ("mydirpath.props");
i will get a context object. now i want to share this context object with other projects (which can be web or simple java projects, but they all run in the same app server). is it possible...if yes then How to do it ??


Reply With Quote