2

我有这个代码:

import com.jcabi.aspects.Cacheable;

@Cacheable(forever = true)
public String authorizedRequestBuilder() throws GeneralSecurityException, IOException {
    return String.format("Bearer %s", acquireToken());
}

在调试时,我看到方法的主体被调用了几次。

有没有更多的配置要做?

4

1 回答 1

0

jcabi 仅适用于 AspectJ 编译时编织。

那么,您确定您使用的是 AspectJ 编译器来编译您的代码吗?根据这篇博文,您应该使用 jcabi Maven 插件(或等效插件):

<project>
  <dependencies>
    <dependency>
      <groupId>com.jcabi</groupId>
      <artifactId>jcabi-aspects</artifactId>
    </dependency>
    <dependency>
      <groupId>org.aspectj</groupId>
      <artifactId>aspectjrt</artifactId>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>com.jcabi</groupId>
        <artifactId>jcabi-maven-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>ajc</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>
于 2016-09-26T19:56:46.980 回答