作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我经常忍受这个很长一段时间,但我有点担心它现在会减慢我的构建过程。当 Spring/AspectJ 报告这些警告时,有好几秒钟的时间。我宁愿尝试使最干净的构建成为可能,即使它最终没有加快速度。
以下是警告:
Found @DeclareAnnotation while current release does not support it (see 'org.aspectj.weaver.bcel.AtAjAttributes')
advice defined in org.springframework.orm.jpa.aspectj.JpaExceptionTranslatorAspect has not been applied [Xlint:adviceDidNotMatch]
advice defined in org.springframework.mock.staticmock.AnnotationDrivenStaticEntityMockingControl has not been applied [Xlint:adviceDidNotMatch]
advice defined in org.springframework.mock.staticmock.AbstractMethodMockingControl has not been applied [Xlint:adviceDidNotMatch]
advice defined in org.springframework.scheduling.aspectj.AbstractAsyncExecutionAspect has not been applied [Xlint:adviceDidNotMatch]
最佳答案
如果您看到 here , readAj5ClassAttributes 方法抛出此异常。看起来您正在使用当前版本不支持的某种注释。如果您检查该方法,您将看到仅当类不是“org.aspectj.lang.annotation”和 时才会抛出此异常。您有 "lorg/aspectj/lang/annotation/DeclareAnnotation;"或 @DeclareAnnotation 某处 .
因此,要么不要使用此注释,要么检查 jar 的版本,因为它说:
while current release does not support it
关于spring - 在构建项目时,有没有办法摆脱这些 spring/aspectj 警告?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4380318/
我是一名优秀的程序员,十分优秀!