作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
jcabi @RetryOnFailure
无法解析为类型。
我在我的 pom.xml 中添加了'编织'和 jcabi 依赖项
<plugin>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-maven-plugin</artifactId>
<version>0.9.3</version>
<executions>
<execution>
<goals>
<goal>ajc</goal>
</goals>
</execution>
</executions>
</plugin>
....
<dependency>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-aspects</artifactId>
<version>0.21.1</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.6.12</version>
<scope>runtime</scope>
</dependency>
但是 @RetryOnFailure
不被识别。我在这里遗漏了什么吗?
最佳答案
我在 pom.xml 中使用了以下依赖项,它对我有用。更新两者的版本。
<dependency>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-aspects</artifactId>
<version>0.22</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.8.3</version>
</dependency>
关于java - jcabi @RetryOnFailure 无法解析为类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29570144/
jcabi @RetryOnFailure 无法解析为类型。 我在我的 pom.xml 中添加了'编织'和 jcabi 依赖项 com.jcabi jcabi-mave
本文整理了Java中org.apache.twill.zookeeper.ZKClients.retryOnFailure()方法的一些代码示例,展示了ZKClients.retryOnFailure
我正在使用 Entity Framework Core 2.2,我决定关注一些博客 sugestion 并启用失败重试: services.AddDbContext( options => o
我是一名优秀的程序员,十分优秀!