类 'XXX/XXX/XXX ' 无法通过 Sonar 分析中的 ClassLoader 警告访问 Jenkins 构建和 maven 项目



我知道这是经常出现的问题,但我找不到解决问题的方法。

JENKINS中,我在构建后运行SONAR分析。当Soanar到达Java bytecode scan...时,它显示:WARN - Class '.../.../.../...' is not accessible through the ClassLoader

扫描是在一个Maven项目上,声纳一直显示这个消息,并引发许多其他类使用Maven依赖项

声纳分析使用Sonar - runner

我在许多帖子中看到,这个问题可以通过在sonar-project.properties中添加sonar.librairies=/path/to/libraries/*jar来解决,但是使用Maven,依赖关系没有分组在一个文件夹下。Jar被分派到maven-repositories下的不同文件夹下。

那么我如何解决这个问题来扫描我的代码没有这些警告?

供参考:詹金斯

1.555

声纳

4.2

声纳流道 2.3

Java

1.7Maven

3.04

堆栈跟踪:

09:23:55.605 INFO  - Java bytecode scan...
09:23:55.646 WARN  - Class 'org/springframework/context/ApplicationContext' is not    accessible through the ClassLoader.
09:23:55.656 WARN  - Class 'com/mongodb/MongoClient' is not accessible through the ClassLoader.
09:23:55.657 WARN  - Class 'com/mongodb/DB' is not accessible through the ClassLoader.
09:23:55.661 WARN  - Class 'org/springframework/context/ApplicationContext' is not    accessible through the ClassLoader.
09:23:55.662 WARN  - Class 'org/springframework/context/ApplicationContext' is not accessible through the ClassLoader.
...
09:23:55.749 WARN  - Class 'org/apache/log4j/Logger' is not accessible through the ClassLoader.
09:23:55.773 INFO  - Java bytecode scan done: 168 ms

编辑:

在jenkins build中运行mvn dependency:tree:

[INFO] --- maven-dependency-plugin:2.1:tree (default-cli)
[INFO] +- org.springframework:spring-context:jar:4.0.3.RELEASE:compile
[INFO] |  +- org.springframework:spring-aop:jar:4.0.3.RELEASE:compile
[INFO] |  |  - aopalliance:aopalliance:jar:1.0:compile
[INFO] |  +- org.springframework:spring-beans:jar:4.0.3.RELEASE:compile
[INFO] |  +- org.springframework:spring-core:jar:4.0.3.RELEASE:compile
[INFO] |  |  - commons-logging:commons-logging:jar:1.1.3:compile
[INFO] |  - org.springframework:spring-expression:jar:4.0.3.RELEASE:compile
[INFO] +- org.springframework:spring-webmvc:jar:4.0.3.RELEASE:compile
[INFO] |  - org.springframework:spring-web:jar:4.0.3.RELEASE:compile
[INFO] +- org.springframework:spring-test:jar:4.0.3.RELEASE:test
[INFO] +- org.apache.poi:poi:jar:3.9:compile
[INFO] |  - commons-codec:commons-codec:jar:1.5:compile
...
...
[INFO] +- org.mockito:mockito-all:jar:1.9.5:test
[INFO] +- com.jayway.jsonpath:json-path:jar:0.9.1:test
[INFO] |  - net.minidev:json-smart:jar:1.2:test
[INFO] +- org.hamcrest:hamcrest-all:jar:1.3:test
[INFO] - junit:junit:jar:4.11:test (scope not updated to compile)
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------

谢谢

由于Maven列出了缺失的类,您可能正在使用Jenkins插件来运行Sonar。我从未使用过这个插件,但我猜它不知道Maven。因此,它不能从POM创建类路径,并且在运行时确实丢失了类。

在正确配置Maven的Sonar插件后,尝试使用Maven目标:mvn sonar:sonar运行Sonar。

相关内容

最新更新