标签:打开网页 mysql windows win 切换 lin tar 创建 根目录
sonar.jdbc.username=sonar
sonar.jdbc.password=sonar
sonar.jdbc.url=jdbc:mysql://172.168.1.4:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance
4、下载sonar scanner2.8版本后解压到对应目录,配置环境变量:
#----- Default SonarQube server
sonar.host.url=http://localhost:9000/
#----- Default source code encoding
sonar.sourceEncoding=UTF-8
#----- Global database settings (not used for SonarQube 5.2+)
sonar.jdbc.username=sonar
sonar.jdbc.password=sonar
#----- PostgreSQL
#sonar.jdbc.url=jdbc:postgresql://localhost/sonar
#----- MySQL
sonar.jdbc.url=jdbc:mysql://172.168.1.4:3306/sonar?useUnicode=true&characterEncoding=utf8
5、双击D:\sonar\sonarqube-5.6.3\sonarqube-5.6.3\bin\windows-x86-64\StartSonar.bat启动服务,出现下面的说明服务启动成功:
此时,登录http://localhost:9000/,界面如下:
6、默认进入http://localhost:9000/显示的是英文,需要安装中文插件包。下载中文插件的路径:
administration--system-update center-available--找到chinese pack安装即可。
1、项目根目录下创建sonar-project.properties,配置如下:
参数具体根据自己的项目,语言设置。
2、cmd切换到项目根目录下,输入sonar-scanner 运行即可:
3、运行结束后,到http://localhost:9000/查看测试结果即可,根据测试结果查找代码中存在的问题,进行分析处理,从而优化代码。
4、实践规程中遇到的问题:
标签:打开网页 mysql windows win 切换 lin tar 创建 根目录
原文地址:http://www.cnblogs.com/sunshine-sky66/p/6126769.html