Welcome to Ask Ozar.net !
Welcome to Ask Ozar.net, where you can ask questions and receive answers from other members of the community.
+1 vote
How could I remove all annotations from a class source code with a one-click trigger in whichever IDE?

My specific requirement is to convert all entity beans into just un-annotated POJOs which will be used by plain JDBC controllers.
in Programming by (560 points)

1 Answer

0 votes
Try using regular expressions (regexp) to replace the following with an empty string:
@.+
by (870 points)
...