#tee

使用idea上传项目到码云(gitee)上

登录到码云上面去,进入个人主页,然后点击项目的加号创建项目。   创建项目。   idea上创建好项目,然后根据图片操作创建仓库   选择当前项目当做仓库目录  点击项目目录右键,此时会出现一个git,这是仓库...

armbian_运行puppeteer

在安装puppeteer过程中遇到一些错误,记录一下首先可能遇到nodeinstall.js错误,可以使用一下命令参数安装puppeteernpmi--savepuppeteer--ignore-scripts1或者先执行一下命令再安装puppeteernpmconfigsetunsafe-permtruenpmipu...
代码星球 ·2021-01-09

java.lang.IllegalStateException: Service id not legal hostname (/test-gw-aqa)

错误信息:java.lang.IllegalStateException:Serviceidnotlegalhostname(/test-gw-aqa)错误原因和解决方案:FeignClient错误写法:@FeignClient("/test-gw-aqa")FeignClient正确写法:@FeignClient("...

java.security.cert.CertificateException: No subject alternative names present

背景:在开发一个项目中,要调用一个webservice服务,之前设置的是http协议,项目中采用jdk自带的wsimport工具生成的客户端代码;后来,需求变更要求兼容https协议的webservice,开始以为只需要简单的将服务地址的连接改为https就可以了;但不行,总是报错javax.net.ssl.SSLHa...

pickle导入变量AttributeError的解决方案

问题描述:AttributeError:'module'objecthasnoattribute‘attr1’  解决方案:#找到报错的文件a.pyfromaimportattr1  ...

Caffe SSD AttributeError: 'module' object has no attribute 'LabelMap'

caffessd错误描述:AttributeError:'module'objecthasnoattribute'LabelMap' SSDfromcaffe.protoimportcaffe_pb2ImportError:Nomodulenamedcaffe.proto解决方法在用voc2007和voc20...

java.lang.IllegalStateException: Duplicate key 20

 这个我在公司遇到的一个问题。原因:使用Map<String,String>RelationMap=relation.stream().collect(Collectors.toMap(s->s[2],s->s[1],(oldValue,newValue)->newValue))...

微博第三方登录时,域名使用错误报错, Laravel Socialite Two InvalidStateException No message

使用微博第三方登录时,报错LaravelSocialiteTwoInvalidStateExceptionNomessageLaravelSocialiteTwoInvalidStateException…vendorsocialiteprovidersmanagersrcOAuth2AbstractProvider....

AttributeError: module ‘select’ has no attribute 'epoll’

 场景:mac下导入的‘select’包 importselect,然后在 主函数 中创建的 epoll 对象 epl=select.epoll(),运行报错如下Traceback(mostrecentcalllast):Fi...

AttributeError: module 'pytest' has no attribute 'allure'

 解决pip3uninstallpytest-allure-adaptorpip3installallure-pytest  参考:https://www.cnblogs.com/lansan0701/p/10345142.html...

Riverbed SteelHead 9.5.0

平台: scientificlinuxrelease6.5类型: 虚拟机镜像软件包: riverbedsteelhead9.5.0basicsoftware Enterpriseintegration Network security WanOpti...
代码星球 ·2020-10-01

Jenkins 自动发布 Spring Boot 项目(Gitee)

 1.下载 wgethttp://mirrors.jenkins.io/war-stable/latest/jenkins.war,并部署到tomcat下2.机器安装好java,maven,git3.浏览jenkins  http://127.0.0.1:18080/jenkin...

AttributeError: module 'shutil' has no attribute 'copyfileobj'

importshutil#1.copyfileobj(源文件,目标文件)将文件内容复制到另一个文件shutil.copyfileobj(open('config.log','r'),open('pic.json','a'))------------------------------------------------...

AttributeError: 'Request' object has no attribute 'json', cherrypy 无法接收到json字符串,解决方法

    @cherrypy.expose    @cherrypy.tools.accept(media="application/json")  #加入这个装饰器    @che...
首页上一页...23456...下一页尾页