资产项目部署中遇到的问题与解决方法

Posted ratels

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了资产项目部署中遇到的问题与解决方法相关的知识,希望对你有一定的参考价值。

1.问题:IDEA不显示RunDashboard窗口

参考:

https://jingyan.baidu.com/article/ce4366495a1df73773afd3d3.html

 

2.报错:Error running ‘HbaseServiceApplication‘: Command line is too long. Shorten command line for HbaseServiceApplication or also for Spring Boot default configuration.

参考:

https://blog.csdn.net/ZXJ_1223/article/details/80611089

 

3.报错:RedisConnectionException: Unable to connect to localhost:6379

详细情况:在ass****nage项目下新建一个模块,只打算实现最基础的注册Eureka Server功能,并没有添加Redis相关引用。

问题分析:多模块项目中,子模块会从父项目中继承POM相关内容,但是配置文件中如果没有相关配置内容,相关POM组件就会报错,ass****nage项目中,配置文件由configservice进行管理,因此模块配置文件中不能缺少访问configservice的相关设置。原配置文件为:

server.port=7077
spring.application.name=feiservice,common
eureka.client.service-url.defaultZone=http://****:****@10.200.101.****:7000/eureka/,http://****:****@10.200.101.****:7000/eureka/
eureka.instance.prefer-ip-address=true
eureka.instance.instance-id=$spring.application.name:$spring.cloud.client.ip-address:$server.port

添加如下内容:

spring.cloud.config.uri=http://10.200.101.****:7001,10.200.101.****:7001
spring.cloud.config.username=****
spring.cloud.config.password=****
spring.cloud.config.profile=dev

 

4.报错:模块既不显示在Run Dashboard中,也无蓝色方块,如下:

技术图片

分析:在模块下没有发现usercenterservice.iml文件,在文件modules.xml中也没有发现对该文件的引用,如下:

技术图片

解决方法:进入模块文件夹下,执行命令 mvn idea:module 生成 usercenterservice.iml 文件,把该文件加入到modules.xml中,问题解决!如下:

技术图片

技术图片

技术图片

技术图片

参考:https://ask.csdn.net/questions/667256 ; https://blog.csdn.net/saygood999/article/details/95626365

 

5.打包失败

技术图片

报错:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.20.1:test (default-test) on project eurekaservice: There are test failures.
[ERROR] 
[ERROR] Please refer to D:\\Development\\asset\\assetmanage-master-190827\\eurekaservice\\target\\surefire-reports for the individual test results.

解决方法:

打开全局pom.xml文件,在<properties></properties>中添加<maven.test.skip>true</maven.test.skip>属性,如下:

技术图片

再次打包,先Maven->clean,再Maven->install,打包成功,如下:

技术图片

可以在Maven库中找到打包后的jar包

技术图片

 

 

参考:

https://blog.csdn.net/ruanjian1111ban/article/details/80890539

https://xinklabi.iteye.com/blog/2075345

以上是关于资产项目部署中遇到的问题与解决方法的主要内容,如果未能解决你的问题,请参考以下文章

weblogic12c部署遇到的问题和解决

Linux部署项目遇到问题解决

iOS开发--Swift 最近项目开发中遇到的一些小问题与解决方法

Vue项目部署遇到的问题及解决方案

(转)配置Website的IIS时遇到的问题与解决方法

2019-03-26 SpringBoot项目部署遇到跨域问题,记录一下解决历程