I have a war deployed on a Websphere box. It uses a file to build up a trie structure inside a web service. Instead of having to redeploy an updated ear with the file as a resource, we want to be able to put the file on Websphere and update it as necessary, then just cycle the servers (we have multiple nodes) to avoid downtime. Where would be the best place to store such a file so that it would be picked up in the classpath?

I'm pretty new to using Websphere, so if I'm not making sense, please let me know.

link|improve this question

79% accept rate
feedback

2 Answers

up vote 2 down vote accepted

There is a shared library concept in WebSphere. You can add your data file to a jar and that jar will be deployed as a shared library. the library can then be specified as a dependency to your WAR module during deployment.

http://publib.boulder.ibm.com/infocenter/wasinfo/v5r1//index.jsp?topic=/com.ibm.websphere.base.doc/info/aes/ae/tcws_sharedlib.html http://www.albeesonline.com/blog/2008/04/07/creating-a-shared-library-in-websphere/

But this is not JEE compliant and specific to WAS only.

link|improve this answer
Thanks. That sounds like a good solution. – AHungerArtist Nov 2 '10 at 19:47
feedback

In my opinion, the best way to use a URL Provider as described in this article: http://www.ibm.com/developerworks/websphere/library/techarticles/0502_botzum/0502_botzum.html

link|improve this answer
this looks promising but can you post why this is the best way? and if this is jee compliant? – Pangea Nov 2 '10 at 19:58
In my opinion, it is more portable since it is JEE compliant. – esmiralha Nov 2 '10 at 20:05
Another advantage is that the actual physical location and the protocol used to retrieve it are unknown to your application. Want to move the file to another server? Just change the URL Provider... – esmiralha Nov 2 '10 at 20:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.