I have a Glassfish 3.1.1 web application for JEE6 running. one of my classes has a native library dependencie. I'm using JNI to use this native method. Part of that process involves creating a shared library .so file. In one of my Java classes there will be a System.Loadlibrary("library"); call that references that library.so file.

My questions is, where should I place this shared library as well as the native code that it references in order to access and use this JNI functionality on Glassfish.

I'll need to make calls to several C++ programs that can be moved anywhere on the machine that that Glassfish is hosted on. Should I put them in the domain1/ext folder? add them as a native library to a jar in the build path. How is this done?

link|improve this question

it's on linux apache – Randnum Jan 20 at 20:29
I recommend reading the accepted answer to this question: stackoverflow.com/questions/1962718/maven-and-the-jogl-library – Alexandre Jan 20 at 20:38
feedback

2 Answers

up vote 5 down vote accepted

Use the following Glassfish command to set the path where your native libraries are located:

asadmin set server.java-config.native-library-path-prefix=$NATIVE_LIBRARY_PATH

It is also possible to set the native library location via the Admin Console. If you want flexibility in moving/renaming the libraries, you can use symbolic links.

What is the advantage of this to adding a native library through Eclipse build path?

The JVM needs to know the native library path. If you launch the JVM from Eclipse (e.g. unit testing with the native library), then you will need to configure the path in Eclipse. However, if you launch the JVM from Glassfish (by using the Eclipse Glassfish Adapter) then Glassfish itself needs to be configured.

link|improve this answer
+1. Definitely better than just sticking your own libraries into system directories. – andri Jan 20 at 20:33
What is the advantage of this to adding a native library through Eclipse build path? if I go to the build path select the jar. Expand a jar I can edit somthing called "Native Libraries" what does this do and how is it used differently than setting the asadmin server.java-config... setting. – Randnum Jan 20 at 21:46
Please see updated answer. – Garrett Hall Jan 20 at 22:02
If you're still checking this does this also apply to making the project readyto be deployedon another server? I'm assuming tht if I consistently set the files in the same directories on the server I can use the same asadmin call and set the $NATIVE_LIBRARY_PATH on each machine? – Randnum Jan 24 at 0:19
The command should work on multiple Glassfish servers so long as the native libraries are in the same place on each server. You could make the asadmin commands part of your production server build. – Garrett Hall Jan 24 at 16:21
show 2 more comments
feedback

When I Use a JNI Wrapped DLL in Windows Based server, Have Place the DLL in

    C:/Windows/System32

You can try placing .so on linux machine at

   /usr/lib64/

just a try.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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