Hi, I`m looking to start project that needs to process annotations. I was wondering what apis are available to help with reflection and annotation processing. I know theres Apache BeanUtils but are there any others?
views:
46answers:
3
A:
The Java Annotation Processing API might be a good place to start.
Tomislav Nakic-Alfirevic
2010-03-22 09:01:16
A:
Additionally to Bozho's post there is java.beans.ReflectionUtils
that serves as a utility class for reflectively finding methods, constuctors and fields using reflection.
There is also a ReflectionUtils
class in org.springframework.util
for some more advanced stuff but it is marked for internal use only. Using it against this advise you should keep in mind that it might change over time and versions.
codescape
2010-03-22 09:46:01