原文地址:https://xobo.org/spring-boot-apollo-dubbo-xml-error/ 某Spring Boot项目接入 apollo 后启动 dubbo 报错Caused by: java.lang.IllegalStateException: ApplicationConfig.application == null. 根据异常猜测是 dubbo 启动时未读取到 apollo 内的配置. 解决方法 apollo-client 升到 1.2.0 之后,然后在appl…
安装VS 2015完成后,VS2012 打开报错 打开VS2012Web项目,弹出错误提示: asp.net 4.0 has not been registered on the web server. you need to manually configure…… 解决办法: 微软官方下载补丁包,安装: https://support.microsoft.com/en-us/kb/3002339 再次从打开VS2012 打开Web项目OK了.…
在Linux上配置xampp后远程访问域名报错: New XAMPP security concept: Access to the requested object is only available from the local network. This setting can be configured in the file "httpd-xampp.conf". 初步分析了一下错误原因是:安全异常,需要修改httpd-xampp.conf.这个文件在:/opt/lampp/…
在利用biweb进行网站开发的时候 首先得安装biweb    安装就是下一步,,,下一步....下一步   最后就成功了 .但是有种情况我总是竟让遇到,而已有的人安装会遇到 有的人安装就不会遇到,后来上网查了一下才知道是怎么回事. 原来是php版本的问题 由于自己计算机上的php版本太高,biweb 的版本 不是太高,所以安装后会产生报错  下面就给大家截图看错,这个是主页上方的错误,相信很多人都遇到过…
运行编译后的程序报错  error while loading shared libraries: lib*.so: cannot open shared object file: No such file or directory -------------------------------------------------------------------------------------------------------------------------------------…
1.Xcode自带头文件的路径 /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.1.sdk/System/Library/Frameworks/UIKit.framework/Headers 2.修改了系统自带头文件后,Xcode会报错 解决方案:删掉下面文件夹的缓存即可(aplle是电脑的用户名) /Users/aplle/…
pycharm移动项目文件后,运行报错: ModuleNotFoundError:  No module named 'D:/my_project/my_cases/email139cases/test_login'…
RN与android原生开发混合后的环境报错问题 需要先安装nodejs$ yarn --version1.12.1更新当前版本yarn upgrade --latest安装 | Yarnhttps://yarnpkg.com/lang/zh-hans/docs/install/#windows-stable================到对应目录下用git bash here执行:yarn================yarn startnpm install===============…
在Ubuntu下安装Sublim Text3后发现无法输入中文,按照此链接的方法解决后.然后用下列代码配置C++的编译系统: { "cmd":["g++","${file}","-o","${file_path}/${file_base_name}"], "file_regex":"^(..[^:]*):([0-9]+):?([0-9]+)?:?(.*)$", &qu…
数据库字段gender为枚举类型,从前台接受到实体后进行保存报错:org.postgresql.util.PSQLException: ERROR: column "gender" is of type gender but expression is of type character varying ========================== 本篇文章从解决这个报错入手,附带 1.@TypeDef/@Enumerated/@Type的使用!!!!! ===========…