What exactly is Java bytecode injection and why would one use it?
|
Java code compiles into bytecode ( Imagine a scenario where I want to find out how many times method
is invoked in Now I can run my program:
and at runtime, For a pointer on writing an agent from scratch, start here. |
||||
|
|
|
First google search gives an interesting read Java Programming: Bytecode Injection |
|||
|
|
|
To address the second part of your question. I use it since I'm lazy and don't want the to spend half of my (working) life writing getters and setters. Instead I put an annotation @Data before my class definition and everything is done. See the 3 minutes video demonstration on Project Lombok. |
|||
|
|