Plugging in to Java compilers

前端 未结 2 1031
时光说笑
时光说笑 2020-12-06 19:07

I have a post-compilation step that manipulates the Java bytecode of generated classes. I\'d like to make life as painless as possible for library consumers, so I\'m looking

2条回答
  •  情深已故
    2020-12-06 19:51

    It can be done.

    Take a look at my blog post Roman Numerals, in our Java where an annotation processor is used to rewrite code. Limitation being that it works with Sun's javac only.

提交回复
热议问题