Tagged Questions
3
votes
1answer
100 views
Java Bytecode Instrumentation: NullPointerException in reflective call to defineClass
Intent:
I'm using the java.lang.instrument package to create some instrumentation for Java programs. The idea is that I use bytecode manipulation via this system in order to add method calls at the ...
3
votes
1answer
74 views
How can this instrumentation be done
I have different Java applications running on my system and want to instrument classes from one of these applications
While trying to do this using dynamically loaded Java agent I found that we can ...
0
votes
1answer
58 views
Glassfish javaagent instrumented class experiences NoClassDefError
I have Oracle GlassFish 3.1.2.2 (build 5) server plugged with my own javaagent.
The javaagent instruments specific classes(say servlets) by injecting a piece of bytecode which referes to classes ...
1
vote
1answer
52 views
Shortcomings of instrumenting compiled code before loading
Can anybody put lime light on what possible problems might emerge if an application created instruments class files before loading them using custom loader. I have created a java application that does ...
2
votes
1answer
308 views
Error while instrumenting class files (asm.ClassWriter.getCommonSuperClass)
Getting error on instrumentation
java.lang.RuntimeException: java.lang.ClassNotFoundException: Deposit
at org.objectweb.asm.ClassWriter.getCommonSuperClass(Unknown Source)
at ...
3
votes
1answer
234 views
Java: How to intercept classes as they are being loaded by the JVM
In my program I want to intercept classes as they are being loaded by their ClassLoader and do some stuff with them eg. check for certain annotations etc. How do I do this?
I have already done a lot ...
0
votes
2answers
127 views
Debugging external libraries, without modifying them, under tomcat
We have a web application which sometimes (quite rarely, several times a day) gives an
error in production. It is deployed on Tomcat, uses Spring+Hibernate, the error is caused
by a Hibernate ...
1
vote
2answers
296 views
Implementing a selective ClassLoader
I want to instrument the bytecode of some classes on the classpath at loading time. Since these are 3rd party libraries, I know exactly when they are loaded. The problem is that I need to do the ...
1
vote
2answers
1k views
Location of javaagent jar in bootclasspath
I have a javaagent jar that I put on the bootclasspath using
Boot-Class-Path: myagent.jar
inside the MANIFEST.MF file.
I need to find out the directory on the filesystem in which the jar is ...
3
votes
2answers
234 views
Is there an equivalent to Java's ClassFileTransformer in .NET? (a way to replace a class)
I've been searching for this for quite a while with no luck so far. Is there an equivalent to Java's ClassFileTransformer in .NET? Basically, I want to create a class CustomClassFileTransformer (which ...