1. 程式人生 > >【SonarQube】安裝、配置與使用 01

【SonarQube】安裝、配置與使用 01

ges 工具 順序 64位系統 runner lba 問題 分析 clas

SonarQube是管理代碼質量一個開放平臺,可以快速的定位代碼中潛在的或者明顯的錯誤,下面將會介紹一下這個工具的安裝、配置以及使用。

準備工作;

1、jdk(不再介紹)

2、sonarqube:http://www.sonarqube.org/downloads/

3、SonarQube+Scanner:https://sonarsource.bintray.com/Distribution/sonar-scanner-cli/sonar-scanner-2.5.zip

4、mysql數據庫(不再介紹)

一、安裝篇

1.下載好sonarqube後,解壓打開bin目錄,啟動相應OS目錄下的StartSonar。如本文演示使用的是win的64位系統,則打開D:\sonar\sonarqube-5.3\sonarqube-5.3\bin\windows-x86-64\StartSonar.bat

2.啟動瀏覽器,訪問http://localhost:9000,如出現下圖則表示安裝成功。

技術分享

二、配置篇

1.打開mysql,新建一個數據庫。

2.打開sonarqube安裝目錄下的D:\sonar\sonarqube-5.3\sonarqube-5.3\conf\sonar.properties文件

3.在mysql5.X節點下輸入以下信息

技術分享
sonar.jdbc.url=jdbc:mysql://172.16.30.228:3306/qjfsonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance
sonar.jdbc.username=gmsd
sonar.jdbc.password=gmsdtrade
sonar.sorceEncoding=UTF-8
sonar.login=admin
sonar.password=admin
技術分享

url是數據庫連接地址,username是數據庫用戶名,jdbc.password是數據庫密碼,login是sonarqube的登錄名,sonar.password是sonarqube的密碼

4.重啟sonarqube服務,再次訪問http://localhost:9000,會稍微有點慢,因為要初始化數據庫信息

5.數據庫初始化成功後,登錄

6.按照下圖的點擊順序,進入插件安裝頁面

技術分享

7.搜索chinese Pack,安裝中文語言包

技術分享

8.安裝成功後,重啟sonarqube服務,再次訪問http://localhost:9000/,即可看到中文界面

技術分享

三、使用篇

1.打開D:\sonar\sonar-scanner-2.5\conf\sonar-runner.properties文件

2.mysql節點下輸入以下信息

sonar.jdbc.url=jdbc:mysql://172.16.30.228:3306/qjfsonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance
sonar.jdbc.username=gmsd
sonar.jdbc.password=gmsdtrade

註意:如果測試項目與sonar不在同一臺服務器上,則需要添加服務器的IP:

#----- Default SonarQube server
sonar.host.url=http://XXX.XXX.XXX.XXX:9000

3.配置環境變量

a.新建變量,name=SONAR_RUNNER_HOME。value=D:\sonar\sonar-scanner-2.5

b.打開path,輸入%SONAR_RUNNER_HOME%\bin;

c.sonar-runner -version,出現以下信息,則表示環境變量設置成功

技術分享

4.打開要進行代碼分析的項目根目錄,新建sonar-project.properties文件

5.輸入以下信息

技術分享
# must be unique in a given SonarQube instance
sonar.projectKey=my:project
# this is the name displayed in the SonarQube UI
sonar.projectName=apiautocore
sonar.projectVersion=1.0
 
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# Since SonarQube 4.2, this property is optional if sonar.modules is set. 
# If not set, SonarQube starts looking for source code from the directory containing 
# the sonar-project.properties file.
sonar.sources=src
 
# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8
技術分享

其中:projectName是項目名字,sources是源文件所在的目錄

6.設置成功後,啟動sonarqube服務,並啟動cmd

7.在cmd進入項目所在的根目錄,輸入命令:sonar-runner,分析成功後會出現下圖

技術分享

8.打開http://localhost:9000/,我們會看到主頁出現了分析項目的概要圖

技術分享

9.我們點擊項目,選擇問題鏈接,會看到分析代碼的bug,哇,好多

技術分享

10.選擇一個最嚴重的bug,看看

技術分享

原來是這個地方會出現空指針異常,原因是我沒有進行初始化就使用這個變量了。Over

預知更多使用,請登錄官網自行學習。

http://www.sonarqube.org/

http://docs.sonarqube.org/display/SONAR/Analyzing+with+SonarQube+Scanner

**********************************************************************************************

作者:喬葉葉
博客地址:http://www.cnblogs.com/qiaoyeye/
本文版權歸作者和博客園共有,歡迎轉載,但未經作者同意必須保留此段聲明,否則保留追究法律責任的權利。

**********************************************************************************************

【SonarQube】安裝、配置與使用 01