Spring Boot,@ Configurable LoadTimeWeaving,Tomcat 8 - IllegalStateException

时间:2016-05-14 07:30:32

标签: spring tomcat spring-boot spring-transactions spring-aspects

在我的Spring Boot 1.3.3中,Tomcat 8(嵌入式开发,独立生产)应用程序我将从Spring Proxy Transactional Mode转移到AspectJ事务。

我添加了以下应用程序配置:

@EnableAsync
@ComponentScan("com.example")
@EntityScan("com.example")
@EnableJpaRepositories("com.example")
@EnableTransactionManagement(mode=AdviceMode.ASPECTJ)
@EnableLoadTimeWeaving(aspectjWeaving=AspectJWeaving.ENABLED)
@Configuration
public class ApplicationConfiguration implements LoadTimeWeavingConfigurer {

    @Override
    public LoadTimeWeaver getLoadTimeWeaver() {
        return new ReflectiveLoadTimeWeaver();
    }

}

但是在嵌入式Tomcat 8上的应用程序启动期间(不在Standalone Tomcat上测试它)我得到以下异常:

Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.instrument.classloading.LoadTimeWeaver]: Factory method 'loadTimeWeaver' threw exception; nested exception is java.lang.IllegalStateException: ClassLoader [sun.misc.Launcher$AppClassLoader] does NOT provide an 'addTransformer(ClassFileTransformer)' method.
    at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:189)
    at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:588)
    ... 18 common frames omitted
Caused by: java.lang.IllegalStateException: ClassLoader [sun.misc.Launcher$AppClassLoader] does NOT provide an 'addTransformer(ClassFileTransformer)' method.

我的配置有什么问题/缺席以及如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

我过去自己也看过这个问题,我相信您需要使用java代理运行您的应用程序,以便使用嵌入式tomcat启用加载时编织。让aspectjweaver和spring-instrument jar都准备就绪并尝试使用以下方式启动您的应用程序:

java -javaagent:path/to/aspectjweaver-1.8.2.jar -javaagent:path/to/spring-instrument.jar -jar path/to/your/app.jar