简体   繁体   English

通知Spring AOP中的方法错误

[英]Advise method error in Spring AOP

I'm trying to run an advise in a Spring AOP program but I keep getting this error: 我正在尝试在Spring AOP程序中运行建议,但始终收到此错误:

Exception in Application start method
java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:483)
    at com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(LauncherImpl.java:367)
    at com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:305)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:483)
    at sun.launcher.LauncherHelper$FXHelper.main(LauncherHelper.java:767)
Caused by: java.lang.RuntimeException: Exception in Application start method
    at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:894)
    at com.sun.javafx.application.LauncherImpl.access$000(LauncherImpl.java:56)
    at com.sun.javafx.application.LauncherImpl$1.run(LauncherImpl.java:158)
    at java.lang.Thread.run(Thread.java:745)
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 
Caused by: org.springframework.beans.factory.BeanCreationException: Could not autowire field: .......
Caused by: java.lang.IllegalArgumentException: Can not set .......

The problem I have is that I have prototype beans which I think (But I'm not certain) might be behind this error. 我的问题是我有原型豆,但我不确定(但我不确定)可能是此错误的原因。

I have my Beans declared as annotations, except for the FXML file controllers which are injected via an AppFactory class: 除了通过AppFactory类注入的FXML文件控制器外,我已将Beans声明为批注:

a sample Home.fxml file controller bean gets injected like so: 样本Home.fxml文件控制器bean的注入方式如下:

@Configuration
public class AppFactory {

    @Bean
    public HomeController homeController() throws IOException {
        return (HomeController) loadController("/Home.fxml");
    }

    FXMLLoader loader = null;

    protected Object loadController(String url) throws IOException {
        loader = new FXMLLoader(getClass().getResource(url));
        loader.load();
        return loader.getController();
    }
}

The ones declared by annotating a class look like, for example: 通过注释类声明的内容看起来像,例如:

@Component
@Scope("prototype")
@Entity
@Table(name = "ENTITY_OBJECT")
public class EntityObject extends RevEntity {

    private String name;

    public String getName() {
        return name;
    }

}

The Aspect class looks like: Aspect类如下所示:

@Aspect
public class SampleAopAspect {

    @Before("execution(public String getName())")
    public void timeUpdataedAdvice() {
        System.out.println("Before method ->");
    }
}

The FXML file looks like: FXML文件如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
         http://www.springframework.org/schema/beans/spring-beans.xsd
         http://www.springframework.org/schema/context
         http://www.springframework.org/schema/context/spring-context.xsd 
    http://www.springframework.org/schema/aop 
    http://www.springframework.org/schema/aop/spring-aop-3.0.xsd ">

    <aop:aspectj-autoproxy />

    <bean id="sampleAopAspect" class="org.SampleAopAspect" />

    <context:annotation-config/>
    <context:component-scan base-package="wakiliproject"/>

</beans>

How can I make the advice methods to run, or whare am I going wrong? 如何使建议方法运行,或者我错了? Thank you all in advance. 谢谢大家。

Your prototype beans need to specify a proxyMode, eg: 您的原型bean需要指定proxyMode,例如:

@Scope(proxyMode = ScopedProxyMode.TARGET_CLASS, value = "prototype")

Barry 巴里

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM