我试图在我的Java应用程序中使用Hystrix,它是非春季Java应用程序。
在POM中使用以下Maven依赖关系来启用Hystrix命令:
<dependency>
<groupId>com.netflix.hystrix</groupId>
<artifactId>hystrix-javanica</artifactId>
<version>1.5.8</version>
</dependency>
<dependency>
<groupId>com.netflix.hystrix</groupId>
<artifactId>hystrix-core</artifactId>
<version>1.5.12</version>
</dependency>
<dependency>
<groupId>com.netflix.rxjava</groupId>
<artifactId>rxjava-core</artifactId>
<version>0.20.7</version>
</dependency>
使用以下依赖项来启用AspectJ:
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.8.7</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.8.7</version>
</dependency>
使用以下配置在META-INF中创建aop.xml:
<aspectj>
<aspects>
<aspect name="com.netflix.hystrix.contrib.javanica.aop.aspectj.HystrixCommandAspect" />
</aspects>
<weaver options="-verbose">
<include within="*" />
</weaver>
</aspectj>
在我的服务类别中使用过Hystrix命令:
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Service;
@Component
@Service
public class TestHystrix
@HystrixCommand(commandKey = "testHystrix", threadPoolKey = "testHystrix", commandProperties = {
@HystrixProperty(name = "hystrix.command.testHystrix.execution.isolation.thread.timeoutInMilliseconds", value = "30") }, threadPoolProperties = {
@HystrixProperty(name = "hystrix.threadpool.testHystrix.maximumSize", value = "3") })
public void testHystrix() {
添加了以下JVM参数:
-DWeavingMode=compile
但是在Junit测试和应用程序运行时,都会导致以下错误:
java.lang.NoSuchMethodError: com.netflix.hystrix.contrib.javanica.aop.aspectj.HystrixCommandAspect.aspectOf()Lcom/netflix/hystrix/contrib/javanica/aop/aspectj/HystrixCommandAspect;
请帮助。
答案 0 :(得分:1)
在提出问题之前,您应该先咨询您要使用的任何工具的manual。我只是在这里引用表格:
编织方面
Javanica支持两种编织方式:编译和运行时。 (...)
- CTW。要使用CTW模式,您需要使用特定的jar版本:
hystrix-javanica-ctw-X.Y.Z
。该jar包含使用AJC编译器编译的各个方面。如果您尝试将常规hystrix-javanica-X.Y.Z
与CTW一起使用,则在运行时会从使用iajc构建中获得NoSuchMethodError aspectOf()
。另外,您需要使用java属性-DWeavingMode=compile
启动应用程序。 (...)
所以也许您想切换您的媒体库。
顺便说一句,如果您使用编译时编织(CTW),则不需要aop.xml
,因为AspectJ仅将其用于加载时编织(LTW)。
答案 1 :(得分:0)
我可以通过使用以下AspectJ插件配置以及以上的maven依赖关系来解决此问题:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.7</version>
<configuration>
<complianceLevel>1.8</complianceLevel>
<source>1.8</source>
<target>1.8</target>
<!-- <showWeaveInfo>true</showWeaveInfo>
<verbose>true</verbose>-->
<Xlint>ignore</Xlint>
<encoding>UTF-8 </encoding>
<!-- Provide the Source information. -->
<!-- <aspectLibraries>
<aspectLibrary>
<groupId>com.netflix.hystrix</groupId>
<artifactId>hystrix-javanica</artifactId>
</aspectLibrary>
</aspectLibraries> -->
<!--Weaving already compiled JAR artifacts -->
<weaveDependencies>
<weaveDependency>
<groupId>com.netflix.hystrix</groupId>
<artifactId>hystrix-javanica</artifactId>
</weaveDependency>
</weaveDependencies>
</configuration>
<executions>
<execution>
<goals>
<!-- use this goal to weave all your main classes -->
<goal>compile</goal>
<!-- use this goal to weave all your test classes -->
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
此插件将启用Post Compile编织,有关更多详细信息,请参见非常好的文章@ http://www.baeldung.com/aspectj https://www.mojohaus.org/aspectj-maven-plugin/examples/weaveJars.html 使用此插件,也不需要aop.xml和-DWeavingMode = compile