摘要 Sonar 是一個用於代碼質量管理的開放平臺。經過插件機制,Sonar 能夠集成不一樣的測試工具,代碼分析工具,以及持續集成工具. 與持續集成工具(例如 Hudson/Jenkins 等)不一樣,Sonar 並非簡單地把不一樣的代碼檢查工具結果(例如 FindBugs,PMD 等)直接顯示在 Web 頁面上,而是經過不一樣的插件對這些結果進行再加工處理. 經過量化的方式度量代碼質量的變化,從而能夠方便地對不一樣規模和種類的工程進行代碼質量管理。
Sonar 是一個用於代碼質量管理的開放平臺。經過插件機制,Sonar 能夠集成不一樣的測試工具,代碼分析工具,以及持續集成工具。與持續集成工具(例如 Hudson/Jenkins 等)不一樣,Sonar 並非簡單地把不一樣的代碼檢查工具結果(例如 FindBugs,PMD 等)直接顯示在 Web 頁面上.
而是經過不一樣的插件對這些結果進行再加工處理,經過量化的方式度量代碼質量的變化,從而能夠方便地對不一樣規模和種類的工程進行代碼質量管理。
在對其餘工具的支持方面,Sonar 不只提供了對 IDE 的支持,能夠在 Eclipse和 IntelliJ IDEA 這些工具裏聯機查看結果;同時 Sonar 還對大量的持續集成工具提供了接口支持,能夠很方便地在持續集成中使用 Sonar。
此外,Sonar 的插件還能夠對 Java 之外的其餘編程語言提供支持,對國際化以及報告文檔化也有良好的支持。
Sonar的相關下載和文檔能夠在下面的連接中找到:http://www.sonarqube.org/downloads/。須要注意最新版的Sonar須要至少JDK 1.8及以上版本。 咱們已經能夠成功的使用git進行拉去,Sonar的功能就是來檢查代碼是否有BUG。除了檢查代碼是否有bug還有其餘的功能,好比說:你的代碼註釋率是多少,代碼有一些建議,編寫語法的建議。因此咱們叫質量管理 Sonar還能夠給代碼打分,而且引用了技術宅的功能(告訴你有不少地方沒改)
[root@jenkins ~]# yum install -y java-1.8.0 [root@jenkins ~]# cd /usr/local/src/ [root@jenkins src]# wget https://sonarsource.bintray.com/Distribution/sonarqube/sonarqube-5.6.zip [root@jenkins src]# unzip sonarqube-5.6.zip [root@jenkins src]# mv sonarqube-5.6 /usr/local/ [root@jenkins src]# ln -s /usr/local/sonarqube-5.6/ /usr/local/sonarqube
[root@jenkins local]# yum install -y mariadb mariadb-server [root@jenkins local]# systemctl start mariadb [root@jenkins local]# systemctl enable mariadb
MariaDB [(none)]> CREATE DATABASE sonar CHARACTER SET utf8 COLLATE utf8_general_ci; Query OK, 1 row affected (0.00 sec) MariaDB [(none)]> GRANT ALL ON sonar.* TO 'sonar'@'localhost' IDENTIFIED BY 'sonar@pw'; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> GRANT ALL ON sonar.* TO 'sonar'@'%' IDENTIFIED BY 'sonar@pw'; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.01 sec)
[root@jenkins sonarqube]# cd /usr/local/sonarqube/conf/ [root@jenkins conf]# ls sonar.properties wrapper.conf [root@jenkins conf]# vim sonar.properties
[root@jenkins conf]# vim sonar.properties
#咱們只須要去配置文件裏面修改數據庫的認證便可
14 sonar.jdbc.username=sonar #數據庫用戶
15 sonar.jdbc.password=sonar@pw #數據庫密碼
23 sonar.jdbc.url=jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance
[root@jenkins conf]# vim sonar.properties
99 #sonar.web.host=0.0.0.0
106 #sonar.web.port=9000
[root@jenkins conf]# /usr/local/sonarqube/bin/linux-x86-64/sonar.sh start Starting SonarQube... Started SonarQube.
#若是有什麼問題能夠看一下日誌[/usr/local/sonarqube/logs/sonar.log]