
开发问题
Dreamy_Lois
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SpringCloud Eureka子模块注册问题Connection refused: connect || Cannot execute request on any known server
环境:SpringCloud-Finchley.M9,SpringBoot-2.0.1.RELEASE问题:使用Eureka,子模块向Eureka注册中心注册时报错(两个错误信息)2019-07-30 17:48:02.722 ERROR 2192 --- [nfoReplicator-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request ...原创 2019-07-30 17:55:22 · 685 阅读 · 0 评论 -
v-infinite-scroll 只在页面加载后触发一次 || 滚轮划到低端时不触发 的问题
环境:Nuxt+ElementUI问题:使用瀑布流加载,但是只在页面加载完毕后触发一次,之后再不触发解决方式:将 v-infinite-scroll=“loadMore” 放在一个更大的标签下...原创 2019-09-18 18:04:47 · 7550 阅读 · 1 评论 -
SpringCloudBus使用/actuator/bus-refresh出现"status": 405,"error": "Method Not Allowed" "message": "Reque
环境:SpringCloud-Finchley.M9,SpringBoot-2.0.1.RELEASE问题:在使用SpringCloudBus自动更新时发送post请求给“/actuator/bus-refresh”时,出现405错误 "status": 405, "error": "Method Not Allowed", "message": "Request metho...原创 2019-08-02 13:02:07 · 6448 阅读 · 8 评论 -
java连接高版本mysql错误init datasource error & Error building SqlSession
错误信息:3月 26, 2019 8:18:00 下午 com.alibaba.druid.pool.DruidDataSource error严重: init datasource errorjava.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more...原创 2019-03-26 20:28:18 · 4790 阅读 · 0 评论 -
java动态代理java.lang.ClassCastException: com.sun.proxy.$Proxy7 cannot be cast to com.itheima.service.im
类型转换错误接口过父类的子类,在强制转换的时候,一定要用接口父类来定义,而不能用实现类。final ITransfer iTransfer = new ITransferImpl();ITransfer proxyTransfer = (ITransfer) Proxy.newProxyInstance(iTransfer.getClass().getClassLoader(),...原创 2019-03-30 10:26:20 · 874 阅读 · 0 评论 -
java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException
因为jdk版本过高的原因,8版本之后就会出现这种问题,添加如下jar包即可jaxb-api2.2.12原创 2019-04-29 21:31:36 · 3213 阅读 · 0 评论 -
java.net.SocketException: socket failed: EPERM (Operation not permitted)
java.net.SocketException: socket failed: EPERM (Operation not permitted)我的解决办法(不知道什么原因):更换了AVD 我猜的原因是Android的版本问题这是我在写android课设的时候遇到的问题(菜鸟)当时想联网获取json数据,网络权限也加了,还是出了这个问题,如果你是同样问题可以尝试。...原创 2019-05-16 21:18:05 · 13047 阅读 · 12 评论 -
reply-code=406, reply-text=PRECONDITION_FAILED - inequivalent arg 'durable' for exchange 'exchange_t
记录一下自己遇到的问题SpringBoot集成RabbitMQ入门的时候遇到的报错原因:channel error; protocol method: #method<channel.close>(reply-code=406, reply-text=PRECONDITION_FAILED - inequivalent arg 'durable' for exchange 'ex...原创 2019-07-03 22:31:20 · 19759 阅读 · 0 评论 -
Listener method could not be invoked with the incoming message和 Cannot convert from [java.lang.Strin
记录一下入门RabbitMQ问题问题:org.springframework.amqp.rabbit.listener.exception.ListenerExecutionFailedException: Listener method could not be invoked with the incoming message和org.springframework.messaging...原创 2019-07-03 23:14:15 · 17811 阅读 · 8 评论 -
Can’t resolve ‘vue-router’ in (Vue3搭建项目中遇到的问题)
使用Vue-cli搭建好默认项目后,想要用路由功能,但是报错Can’t resolve ‘vue-router’ in xxxx(某路径)这是因为缺少包的原因在命令行中运行一下命令重启项目即可解决npm install vue-router...原创 2019-07-08 17:58:01 · 21092 阅读 · 1 评论 -
Git 未能顺利结束 (退出码 128)解决办法(使用git向github上提交项目)
最近在向我的github推送项目的时候,发现了错误,找了很多也没有解决,最后才发现是很简单的问题。问题:Git 未能顺利结束 (退出码 128)解决办法;git did not exit cleanly (exit code 128)环境:我使用的是TortoiseGit工具提交(git version 2.13.0.windows.1)解决方案:检查需要提交的项目是否已经添加到本地仓库(...原创 2019-07-10 20:47:02 · 75511 阅读 · 5 评论 -
nuxt添加element-ui 遇见问题Failed to execute 'observe' on 'MutationObserver': parameter 1 is not of type '
页面报错:Failed to execute ‘observe’ on ‘MutationObserver’: parameter 1 is not of type ‘Node’.控制台报错:一般出现这个问题是导包的原因,所以检查导包的问题。发现问题出现在element-ui配置上,弄了一天才找到原因原因:可能是nuxt的版本与element-ui版本不匹配,毕竟前端的东西更新快,兼容性就有...原创 2019-07-16 19:56:37 · 10431 阅读 · 6 评论 -
Field articleDao in XXX required a bean named 'elasticsearchTemplate' that could not be found.
环境:SpringBoot 使用 elasticsearch中出现的问题报错:***************************APPLICATION FAILED TO START***************************Description:Field articleDao in com.tensquare.search.service.ArticleServic...原创 2019-07-25 16:40:47 · 5078 阅读 · 0 评论 -
code ENOENT;errno -4058;This is related to npm not being able to find a file.
环境:Vue 安装 wangeditor报错信息:npm ERR! path D:\java\biyesheji\starter-template-master\template\node_modules\_string.prototype.trimright@2.1.0@string.prototype.trimright\node_modules\function-bindnpm ERR...原创 2019-09-24 21:46:04 · 2874 阅读 · 0 评论