Home > database >  Is it possible deploy and run war-application with javaagent on Wildfly/JBoss?
Is it possible deploy and run war-application with javaagent on Wildfly/JBoss?

Time:09-27

How to deploy and run war-application with javaagent on Wildfly/JBoss? Is it possible?

CodePudding user response:

You can just add agentlib as startup option to Wildfly/JBoss, so yes, sure it's possible. However, if you just want to run the application with agentlib without Wildfly/JBoss classes being iterated, that you wouldn't be able to do, as java agents work on JVM level. So all classes in runtime JVM would be iterated, including Wildfly/JBoss classes.

  • Related