2

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不被认可。我在这里错过了什么吗?

4

1 回答 1

1

我在 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>
于 2015-07-27T09:34:53.197 回答