所以我有一个Spring应用程序,我添加了一个使用注解和@Loggable自定义注解的loggingHandler类。我已经成功记录了@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
}
然后是称为的方法渲染:
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");
}
}
最后是Loggable注释:
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注释了渲染,但随后未记录任何内容。因此,这使我认为spring不会将Root类检测为组件。
答案 0 :(得分:0)
Api如何获得对Root类的引用?我猜您在某处正在执行新的Root()而不是获取Spring托管实例。 – Deinum M. 7月11日10:49
是的,有一个新的Root(),但我不确定为什么要使用spring托管实例... – Cromm,7月11日,11:04
答案很简单:因为Spring AOP仅适用于Spring组件。它创建动态代理以便为它们注册方面或顾问,并在调用代理方法时执行它们。通过__FILE__
实例化,您正在避开代理的创建,因此,您不能期望任何Spring AOP方面都可以在那里工作。为了将AOP应用于非Spring管理的对象,您将需要使用完整的AspectJ。
@M。 Deinum,我写了这个答案以结束话题。我知道您可以自己写,但超过2周没有这样做,因此,请原谅我从您那里窃取了它。随便写下您自己的答案,然后我将删除我的答案,您将被接受。