码迷,mamicode.com
首页 > 其他好文 > 详细

SONAR

时间:2014-08-29 15:49:48      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   使用   java   io   ar   

介绍

Sonar是一个用于代码质量管理的开源平台,用于管理Java源代码的质量。通过插件机制,Sonar 可以集成不同的测试工具,代码分析工具,以及持续集成工具,比如pmd-cpd、checkstyle、findbugs、Jenkins。通过不同的插件对这些结果进行再加工处理,通过量化的方式度量代码质量的变化,从而可以方便地对不同规模和种类的工程进行代码质量管理。

同时 Sonar 还对大量的持续集成工具提供了接口支持,可以很方便地在持续集成中使用 Sonar。

此外,Sonar 的插件还可以对 Java 以外的其他编程语言提供支持,对国际化以及报告文档化也有良好的支持。


 

SONAR安装&运行
运行:
解压后,根据平台运行bin下不同目录下的启动脚本。对于linux x86_64,运行bin/linux-x86-64/sonar.sh。
可用命令:
./sonar.sh { console | start | stop | restart | status | dump }

安装插件:
将插件放置在${SONARHOME}/extensions/plugins下,重启sonar后生效。


SONAR + Maven分析代码质量
1)设置sonar使用的数据库信息。
本例设置sonar使用mysql数据库存储分析数据。保存设置后,执行restart使其生效。

${SONARHOME}/conf/sonar.properties:
  1. # Permissions to create tables, indices and triggers must be granted to JDBC user.
  2. # The schema must be created first.
  3. sonar.jdbc.username=root
  4. sonar.jdbc.password=root
  5. # Comment the following line to deactivate the default embedded database.
  6. #sonar.jdbc.url=jdbc:h2:tcp://localhost:9092/sonar
  7. #----- MySQL 5.x
  8. # Comment the embedded database and uncomment the following line to use MySQL
  9. sonar.jdbc.url=jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true

2)需要在Maven的settings.xml设置sonar信息。
其中<sonar.host.url>http://localhost:9000</sonar.host.url>指明了sonar服务器的地址。所以在执行maven命令的时候,<sonar.host.url>指明的服务器必须已运行起来。

${MAVEN_HOME}/conf/settings.xml:
  1. <profiles>
  2.     <profile>
  3. <id>sonar</id>
  4. <properties>
  5. <sonar.jdbc.url>jdbc:mysql://192.168.198.128:3306/sonar</sonar.jdbc.url>
  6. <sonar.jdbc.driver>com.mysql.jdbc.Driver</sonar.jdbc.driver>
  7. <sonar.jdbc.username>root</sonar.jdbc.username>
  8. <sonar.jdbc.password>root</sonar.jdbc.password>
  9. <sonar.host.url>http://localhost:9000</sonar.host.url> <!-- Sonar服务器访问地址 -->
  10. </properties>
  11.     </profile>
  12. </profiles>
  13. <activeProfiles>     <activeProfile>sonar</activeProfile>
  14. </activeProfiles>
3)执行mvn sonar:sonar命令进行代码分析。
我们可以在Eclipse中,对一个标准maven工程执行sonar。说明下,由于maven对sonar有很好的支持,会自动执行相应的脚本,所以无需在pom中添加sonar说明
在执行maven进行sonar分析之前,必须确保sonar服务器已经处于运行状态。本例中sonar服务器运行在localhost:9000上。

首先,执行sonar:sonar命令,最后得到输出如下输出。如果输出”BUILD SUCCESS“说明已经构建成功。
bubuko.com,布布扣
然后,我们可以在浏览器查看分析结果。

查看分析结果
对于使用sonar自带服务器来说,在浏览器访问:http://sonar_ip:9000,打开sonar结果页面。可使用admin/admin账号登录进入。
如下图所示,点击红色框内的链接,可以查看详细情况。
bubuko.com,布布扣

结合Jenkins
可以将SONAR服务器放置在任意master或者slave节点上,在进行sonar分析时,必须在maven的conf/settings.xml中配置sonar服务器信息。然后就可以在jenkins中进行sonar分析了。
有两种方法使jenkins与sonar结合:一种就是上面介绍的通过maven(jenkins -maven - sonar),另外一种是直接在jenkins中调用sonar。

参考:
Jenkins + sonar持续代码审查:http://www.cnblogs.com/gao241/p/3190701.html






SONAR

标签:style   blog   http   color   os   使用   java   io   ar   

原文地址:http://www.cnblogs.com/topplay/p/3945013.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!