I came across Sigar API from Hyperic (http://www.hyperic.com/products/sigar) which is a system information and reporting API for Java. It heavily uses JNI to gather data, and standalone version contains .SO and .DLL files in a /lib folder.

It works fine in Standalone mode, but I want to use this library inside a WAR. Is there anyway to do that without specifying the lib path in "-Djava.library.path" when starting the server? I want to be able to bundle it inside the WAR file and deploy it into a running server.

Thanks.

link|improve this question

57% accept rate
Nope; that's the way JNI works. If you don't tell the application how to find the DLLs, it won't be able to figure it out on its own. – duffymo Nov 27 '11 at 16:25
feedback

1 Answer

up vote 0 down vote accepted

I got it working with the following setup.

I copied all the content (SO / DLL) files to WAR file's lib folder. Then I deployed it to JBoss, and it worked without any custom system property setup.

Is this specific to JBoss? or can I expect this behavior in any J2EE compliant server?

link|improve this answer
Could you please clearify: You did place all .so files into WEB-INF/lib of the .war? Thanks – alfonx Mar 31 at 21:48
feedback

Your Answer

 
or
required, but never shown

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