Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/houssemnasri/noexam-javassist-maven


https://github.com/houssemnasri/noexam-javassist-maven

Last synced: 1 day ago
JSON representation

Awesome Lists containing this project

README

        

# NeoXam Javassist

## Notes
There may be two scenarios where the transform() method not invoked for all classes:

1. **Class yet not loaded by JVM**: if any class yet not loaded by JVM, then there are chances that Java agent : transform()
will not be invoked for that classes. Whenever it will be loaded by JVM Java
agent : transform() will be invoked for that class.

2. **Class is loaded before initializing ClassFileTransformer**: if you have used any class inside your ClassFileTransformer implementation or any other Agent class,
then that class may be loaded before ClassFileTransformer initialization,
so Java agent : transform() will not be invoked for that class