Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/houssemnasri/noexam-javassist-maven
https://github.com/houssemnasri/noexam-javassist-maven
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/houssemnasri/noexam-javassist-maven
- Owner: HoussemNasri
- Created: 2024-04-27T19:31:43.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-04-27T19:33:09.000Z (6 months ago)
- Last Synced: 2024-10-11T19:49:55.852Z (26 days ago)
- Language: Java
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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