#ET

Java删除List和Set集合中元素

今天在做项目时,需要删除List和Set中的某些元素,当时使用边遍历,边删除的方法,却报了以下异常:ConcurrentModificationException为了以后不忘记,使用烂笔头把它记录如下:错误代码的写法,也就是报出上面异常的写法:Java代码  Set<CheckWork>...
代码星球 ·2020-04-04

Chrome开发者工具详解(2)-Network面板

Chrome无法抓取跳转请求的解决办法昨天在抓取post的登录请求时发现,在发出post请求之后,页面会进行跳转,这样就无法在chrome的开发人员工具中的network面板中查看到请求的具体信息。   点击登录按钮后,直接从登录页面跳转到了我的CSDN。解决办法:  ...

nginx禁止对写操作timeout时retry

1)nginx禁止对写操作timeout时retry以前遇到的一个case,业务那边说一笔请求从nginx端发送给后端tomcat了2次(落在两个不同的tomcat节点上)。后来发现是nginx发给后端节点timeout,然后做了重试,发给了另一个节点。默认情况下nginx对后端error和timeout都会做retr...

List和set集合:交集、差集、合集的区别retainAll,removeAll、addAll

 set、list集合的交集(retainAll)、差集(removeAll)是没有区别的都是一样的.set、list集合的合集addAll是有区别的:set可以去重复;list不去重复 publicstaticvoidmain(String[]args){   &nb...

Java反射 : Declared的作用 ( 例如 : getMethods和getDeclaredMethods )

 importcom.tangcheng.learning.service.lock.annotation.KeyParam;importlombok.Data;importlombok.EqualsAndHashCode;importorg.junit.Test;importorg.springframew...

http请求 405错误 方法不被允许 (Method not allowed)

由于自己疏忽,导致请求错误405,然后前端数据传输没错,百度大都说跟post提交方式有关,改成get还是报错,检查才知道,controller中忘记写@requestMapping("/XXX"),hahhahah被自己粗心蠢哭了,,,从而导致没有没有方法被加载到,方法不予许,下面是相关405错误的解释HTTP协议定义...

Get Docker CE for CentOS

 TogetstartedwithDockerCEonCentOS,makesureyou meettheprerequisites,then installDocker.DockerEEcustomersToinstallDockerEnterpriseEdition(DockerEE)...
代码星球 ·2020-04-04

思维导图软件比较-FREEMIND,XMIND,Mindjet Mindmanager

 https://www.zhihu.com/question/22094277  ...

GMT与Etc/GMT地区信息的时区转换

在将来的版本中可能不再支持以下左面一列中的地区信息的时区。可能从 /usr/share/lib/zoneinfo 删除这些文件。左列中的地区信息的时区用右列中对等的时区来替换。注意:当设置对一个zoneinfoGMT[+-]*timezone变化的 TZ 环境时,时区前必须带一个...

Circular view path [home]: would dispatch back to the current handler URL [/home] again. Check your ViewResolver setup!

Circularviewpath[home]:woulddispatchbacktothecurrenthandlerURL[/home]again.CheckyourViewResolversetup!(Hint:Thismaybetheresultofanunspecifiedview,duetodefaultvi...

cigarettes

描述Tomhasmanycigarettes.Wehypothesizedthathehasncigarettesandsmokesthemonebyonekeepingallthebutts.Outofk>1buttshecanrollanewcigarette. Now,doyouknowhowma...
代码星球 ·2020-04-04

设置java系统属性的最佳实践是什么,-D或System.setProperty()?(What is best practice for setting java system properties, -D or System.setProperty()?)

IneedtosetthecodebasefortheRMIapplicationI'mworkingonatthemomentandhavedonethissuccessfullyusingfirsttry{ResourceBundleconfig=ResourceBundle.getBundle("myApp");...

Spring方法级别数据校验:@Validated + MethodValidationPostProcessor

 org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration  org.springframework.validation.beanvalidation.MethodValidationPos...

File.createNewFile和 File.createTempFile比较和区别

原文地址:http://wzhiju.iteye.com/blog/1119037最近,在看代码时看到了一个方法,File.createTempFile(),由此联想到File.createNewFile()方法,一时间不知道两者到底有什么区别,感觉都是创建新文件嘛,后来查看api文档介绍,并经过自己动手试验,终于有了...

解决——》java.lang.IllegalArgumentException: Body parameter 0 was null

1、操作2、现象(错误信息)3、原因错误代码:4、解决1)方案一:@RequestBody(required=false)2)方案二:传参数时限制authSession不能为空odyparameter0wasnull)1、操作调用controller时2、现象(错误信息)java.lang.IllegalArgumen...
首页上一页...597598599600601...下一页尾页