代碼質量管理java
Sonar 是一個用於代碼質量管理的開放平臺。經過插件機制,Sonar 能夠集成不一樣的測試工具,代碼分析工具,以及持續集成工具。與持續集成工具(例如 Hudson/Jenkins 等)不一樣,Sonar 並非簡單地把不一樣的代碼檢查工具結果(例如 FindBugs,PMD 等)直接顯示在 Web 頁面上,而是經過不一樣的插件對這些結果進行再加工處理,經過量化的方式度量代碼質量的變化,從而能夠方便地對不一樣規模和種類的工程進行代碼質量管理。
在對其餘工具的支持方面,Sonar 不只提供了對 IDE 的支持,能夠在 Eclipse 和 IntelliJ IDEA 這些工具裏聯機查看結果;同時 Sonar 還對大量的持續集成工具提供了接口支持,能夠很方便地在持續集成中使用 Sonar。
此外,Sonar 的插件還能夠對 Java 之外的其餘編程語言提供支持,對國際化以及報告文檔化也有良好的支持。mysql
Sonar部署linux
Sonar的相關下載和文檔能夠在下面的連接中找到:http://www.sonarqube.org/downloads/,須要注意最新版的Sonar須要至少JDK 1.8及以上版本。git
- yum install -y java-1.8.0
- cd /usr/local/src
- wget https://sonarsource.bintray.com/Distribution/sonarqube/sonarqube-7.5.zip
- unzip sonarqube-5.6.zip
- mv sonarqube-7.5 /usr/local/
- ln -s /usr/local/sonarqube-7.5/ /usr/local/sonarqube
準備Sonar數據庫github
- mysql> CREATE DATABASE sonar CHARACTER SET utf8 COLLATE utf8_general_ci;
- mysql> GRANT ALL ON sonar.* TO 'sonar'@'localhost' IDENTIFIED BY 'sonar@pw';
- mysql> GRANT ALL ON sonar.* TO 'sonar'@'%' IDENTIFIED BY 'sonar@pw';
- mysql> FLUSH PRIVILEGES;
配置Sonarweb
- cd /usr/local/sonarqube/conf/
- sonar.properties wrapper.conf
- 編寫配置文件,修改數據庫配置
- sonar.properties
- sonar.jdbc.username=sonar
- sonar.jdbc.password=sonae@pw
- sonar.jdbc.url=jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance
啓動Sonarsql
你能夠在Sonar的配置文件來配置Sonar Web監聽的IP地址和端口,默認是9000端口數據庫
- sonar.properties
- sonar.web.host=0.0.0.0
- sonar.web.port=9000
- /usr/local/sonarqube/bin/linux-x86-64/sonar.sh start
訪問Sonar
http://IP:9000編程
插件管理app
- /usr/local/sonarqube/extensions/plugins
代碼分析插件
- https://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Scanner
- Https://github.com/SonarSource 各類語言測試範例,sonar-example
Sonar-scanner插件目錄結構
- [root@localhost local]# cat sonar-scanner/conf/sonar-scanner.properties
- #Configure here general information about the environment, such as SonarQube server connection details for example
- #No information about specific project should appear here
- #----- Default SonarQube server
- sonar.host.url=http://sonarqube地址:9000
- #----- Default source code encoding
- sonar.sourceEncoding=UTF-8
- sonar.jdbc.username=sonar(數據庫用戶)
- sonar.jdbc.password=sonar@pw(數據庫密碼)
- sonar.jdbc.url=jdbc:mysql://localhost:3306/sonar?useUnicode=true&:characterEncoding=utf8
Sonar-example語言測試範例
- [root@localhost local]# cat sonar-project.properties
- sonar.projectKey=demo
- sonar.projectName=demo
- sonar.projectVersion=1.0
- sonar.sources=./
- sonar.language=java
- sonar.sourceEncoding=UTF-8
Sonar-scanner檢測命令
- [root@localhost local]# /usr/local/sonar-scanner/bin/sonar-scanner
訪問Sonar
http://IP:9000 就會看到示例,檢測什麼樣的語言,提早按照好插件,Chinese Pack是中文插件