Guys inside my web app i have custom class which anotates every class run time
@Component
public class StartupRunner implements ApplicationRunner {
private final XmlRootElementAdder xmlRootElementAdder;
so it causes issue because when i build my project this xmlrootelementadded class works on generated classes so it anotatets target source classes i have to mvn clean and install and when i start project up it anotates but issues is that whenever i start swagger for example devtools thinks that something changed because our class anotated generated classes and restarts project, can i somehow call my XmlRootElementAdder to work before runing project ? like it must anotate after mvn clean install is not there any execution plugin ?