Итак, у меня есть приложение Spring, я добавил класс loggingHandler, используя аннотацию вместе с пользовательской аннотацией @Loggable. Я успешно регистрирую вызовы методов, определенные в классе @RestController, однако классы, аннотированные как @Component, похоже, не обнаруживаются пружиной ...
Вот часть кода:
package company;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
@SpringBootApplication
@EnableAspectJAutoProxy(proxyTargetClass=true)
@ComponentScan({"company", "document", "logger", "model.bodyComponents"})
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
Тогда API
package company;
@RestController
public class Api {
@PostMapping(value = "/", consumes = MediaType.APPLICATION_XML_VALUE)
@Loggable
public ResponseEntity<?> convertXmlToPdf(HttpServletRequest request) {
// some code
root.render(outputStream); //it is called correctly
// some code
}
Затем метод render, который называется:
package company;
@Component
public class Root {
@Loggable
public void render(OutputStream target) throws IOException, ParseException, TypesetElementWidthException, ClassNotFoundException {
//some code
}
}
Затем LoggingHandler:
@Aspect
@Configuration
public class LoggingHandler {
private Logger log = LoggerFactory.getLogger(this.getClass());
@Pointcut("@annotation(logger.Loggable)")
public void pcLoggable(){
}
@Before("@annotation(logger.Loggable)")
public void beforeAnnotLog(JoinPoint joinPoint){
log.info(joinPoint.getSignature() + "Something will be called called with loggable annot.", joinPoint);
System.out.println("Test Loggable annotation Before the call");
}
@After("@annotation(logger.Loggable)")
public void annotLog(JoinPoint joinPoint){
log.info(joinPoint.getSignature() + "Something is called with loggable annot.", joinPoint);
System.out.println("Test Loggable annotation");
}
}
Наконец, записываемая аннотация:
package logger;
import java.lang.annotation.*;
@Target({ElementType.TYPE ,ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface Loggable {
}
Регистратор вызывается при вызове convertXmlToPdf (я разместил XML, и все работает нормально).
Эти методы вызывают метод Root.render, но в этом случае ничего не регистрируется, несмотря на то, что Root является компонентом, а рендер помечен @Loggable. Так что это заставляет меня думать, что весна не определяет класс Root как компонент ...