您好我有一個彈簧啓動應用程序,它使用Java DSL通過網關接口啓動彈簧集成流程。一切正常自行工作。我加了AOP捕捉到異常,與@EnableAspectJAutoProxy(proxyTargetClass = true)
Spring Boot + Spring集成Java DSL + AOP:無法代理網關接口
在這個階段,它給人的錯誤:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'jobInitiator': Post-processing of FactoryBean's singleton object failed; nested exception is org.springframework.aop.framework.AopConfigException: Could not generate CGLIB subclass of class [class com.sun.proxy.$Proxy54]: Common causes of this problem include using a final class or a non-visible class; nested exception is java.lang.IllegalArgumentException: Cannot subclass final class class com.sun.proxy.$Proxy54
當我刪除了proxyTargetClass = true
,它的工作原理,但建議不會被觸發。
任何幫助?有沒有辦法在沒有網關的情況下啓動彈簧整合流程?
好東西!謝謝加里。 – Ocelot