编程语言-周排行
cookie的设置与销毁 1.设置cookie 2.销毁cookie(将cookie的持续时间设置为0) 2.1查找cookie 2.2销毁cookie 3.实际运用效果 生成cookie 注销cookie ...
分类:编程语言 时间:2019-01-28 12:51:27 收藏:0 阅读:5963
Spring 注解(二)注解工具类 AnnotationUtils 和 AnnotatedElementUtils __Spring 系列目录()__ Spring 注解系列文章: 1. "Spring 注解(一)Spring 注解编程模型" 2. "Spring 注解(二)注解工具类 Annota ...
分类:编程语言 时间:2019-02-21 22:15:03 收藏:0 阅读:2220
报错全文如下 feign.RetryableException: host10.local executing POST http://TIBMAS2-WEBAPI/tibmas2-webapi/api/v1.0/dept/listDeptUserByUserIds\r\n\tat feign.Fe ...
分类:编程语言 时间:2019-06-10 16:40:43 收藏:0 阅读:3670
服务出现报这个错, o.s.c.c.c.ConfigServicePropertySourceLocator - Could not locate PropertySource: label not found 主要原因是git的uri配置出现问题了 cloud: config: label: ma ...
分类:编程语言 时间:2020-01-29 00:58:55 收藏:0 阅读:3016
public static void main(String[] args) { //1.字符数组 转换成 字符串 //(1)直接在构造String时转换 char[] array = new char[] {'a','b','c','d','e','f','g'}; String str = ne ...
分类:编程语言 时间:2020-04-14 09:26:32 收藏:0 阅读:1111
idea在用spring框架中,启动tomacat服务器时候,出现: 一个或多个筛选器启动失败。完整的详细信息将在相应的容器日志文件中找到 这个错误是由于包没导入引起的! 解决办法:导入包 ...
分类:编程语言 时间:2020-05-18 22:24:50 收藏:0 阅读:182
public class A{ private B b; } public class B{ private int id; } //对于List<A> 按照B对象的id进行排序: list.stream().sorted(Comparator.comparing(x-> x.getB().getI ...
分类:编程语言 时间:2020-06-18 11:28:24 收藏:0 阅读:1091
(一)问题:json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) (二)原因:request的GET请求/POST请求,反作用域为空的异常未考虑 (三)代码描述:未做空返回判断,我是因为调用的接口函数错误导致。 ...
分类:编程语言 时间:2020-07-01 21:14:49 收藏:0 阅读:577
直接贴已完成代码 public PayResponse payHttpRequest( MultiValueMap<String, String> params, String signature){ RestTemplate restTemplate = new RestTemplate(); H ...
分类:编程语言 时间:2020-08-26 22:32:14 收藏:0 阅读:1132
以下两种错误一般是网络问题,切换内外网或者加代理,Postman通常可以的 ...
分类:编程语言 时间:2020-06-19 09:19:35 收藏:0 阅读:1991
electron vue加载了地图 openLayer后,打包就包内存溢出 解决办法: 直接在 node 后面写上 max_old_space_size=4096 就好了,我这里设置的内存大小是4G,这个具体的大小可以根据自己的项目情况来设置就好了。然后再重新运行 npm run build 就可以 ...
分类:编程语言 时间:2019-09-06 09:12:16 收藏:0 阅读:3314
创建枚举类,以汽车为例 package com.lw.coodytest.enums; /** * @Classname CarTypeEnum * @Description 汽车类型枚举 * @Author lw * @Date 2020-01-08 11:32 */ public enum Ca ...
分类:编程语言 时间:2020-01-08 12:17:16 收藏:0 阅读:1545
最近在使用 springBoot开发的时候, 使用PostMan访问接口, 返回一个 404 , 后台报一个 warn : Failed to read HTTP message: org.springframework.http.converter.HttpMessageNotReadableEx ...
分类:编程语言 时间:2018-03-31 11:41:04 收藏:0 阅读:2385
解决nested exception is java.lang.IllegalArgumentException: No converter found for return value of type: class java.util.ArrayList问题 ...
分类:编程语言 时间:2016-08-27 14:11:05 收藏:0 阅读:6553
一、问题及原因 程序里有个工具类,主要是调用它的静态方法来发送mq。 调用场景如下: 结果这两天报了个错: java.lang.NoClassDefFoundError: Could not initialize class com.ceiec.rabbitmqservice.utils.MQMes ...
分类:编程语言 时间:2018-12-04 15:18:09 收藏:0 阅读:2920
最近工作中遇到了一些关于自动布局的问题,在项目上线之余将这些问题做了汇总,以记之.    自动布局遇到的几个问题在此总结:    第一种:view的宽度根据内容的大小自动调整    第二种:约束的优先级    第三种:通过两种方式让按钮平均排布     1)约束加代码     2)纯约束 第一种: 1)横向拉伸 1.先看效果图 2.添加的约束: 外部view约束:左,上...
分类:编程语言 时间:2015-04-20 18:36:16 收藏:0 阅读:8082
错误如下: 错误现象: 1、 服务调用了一次后第二次调用就变成了500 2、或者调用的服务直接出现500。错误同样是出现以上信息。 问题排查: 1、排查Spring Cloud的版本问题:Camden.SR7,与这个无关。 2、排查Feign的接口写法问题,也与这个无关。 3、排查引入的包少了,真的 ...
分类:编程语言 时间:2017-09-20 15:30:42 收藏:0 阅读:6398
com.rabbitmq.client.ShutdownSignalException: channel error; protocol method: #method<channel.close>(reply-code=404, reply-text=NOT_FOUND - no queue 'h ...
分类:编程语言 时间:2018-05-01 14:33:42 收藏:0 阅读:4540
用Maven分模块,其实搭建多模块工程帖子非常多,这里看了这个http://www.cnblogs.com/quanyongan/archive/2013/05/28/3103243.html(转载) 首先建好工程,如图,一个父工程,三个子模块:qgg-web依赖qgg-core和qggservic ...
分类:编程语言 时间:2018-09-04 12:30:00 收藏:0 阅读:3229
报错:TypeError: Tuple or struct_time argument required 原因:时间戳和格式化处理时间不能直接使用会报错 上代码: import time time3 = time.asctime(time.time())# print ("本地时间为 :",time ...
分类:编程语言 时间:2018-10-04 16:29:33 收藏:0 阅读:5079
14567825642
上一页512833下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!