I am attempting to use a third party application to instrument Liberty Server 18.0 and attempting to add a library to the liberty server classpath on Linux. The library is called: "com.ibm.websphere.javaee.security.1.0_1.0.21.jar" and it is under the "/wlp/dev/api/sec" of the Liberty Server.
In my defaultServer directory I have tried several things including in my jvm.options file:
-Dorg.osgi.framework.bootdelegation=META-INF.services,com.singularity.*,com.ibm.*
-Djava.security.policy=/opt/wlp/usr/servers/defaultServer/server.policy
-Xbootclasspath/p:/opt/wlp/dev/api/spec
-javaagent:/opt/myserveragent/javaagent.jar
I've validated that my server is taking that classpath argument but it seems to have no affect. I've also attempted to add this folder also to my server.xml
<library id="agent">
<fileset dir="/opt/wlp/dev/api/spec" includes="*.jar" scanInterval="5s" />
</library>
In desperation I've also tried to simply copy the jars from the /dev/api/sec/ folder to the /wlp/lib directory which appears to be the default folder where all the main liberty classes are loaded from..
Whenever I run:
lsof -p xxxx
I can see that it is never loaded. How do I add this jar to my defaultServer classpath so my third party library can use it?
appSecurity-3.0
feature in server.xml, that will expose thecom.ibm.websphere.javaee.security.1.0_*
lib to your application classloader. Would that be sufficient? – Andy Guibert-Xbootclasspath
route, use-Xbootclasspath/a
(append) rather than-Xbootclasspath/p
(prepend) because the /p option is removed in JDK 9+ and is only needed if you're overriding JDK classes (which you aren't) – Andy Guibert