#LI

禁止tomcat生成catalina.out、localhost_access_log、host-manager.log、localhost.log、manager.log这些文件

1、找到tomcat目录conf,logging.properties把这个文件重命名(推荐:也可以根据自己的需要更改里面的配置文件)      其实删掉也可以但是不建义    这样就不会生成host-manager.l...

log4j1修改DailyRollingFileAppender支持日志最大数量

  配置说明:log4j.appender.logfile=org.apache.log4j.MyDailyRollingFileAppenderlog4j.appender.logfile.File=test.loglog4j.appender.logfile.DatePattern='.'yyy...

Java删除List和Set集合中元素

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

Java并发编程:并发容器之CopyOnWriteArrayList

Copy-On-Write简称COW,是一种用于程序设计中的优化策略。其基本思路是,从一开始大家都在共享同一个内容,当某个人想要修改这个内容的时候,才会真正把内容Copy出去形成一个新的内容然后再改,这是一种延时懒惰策略。从JDK1.5开始Java并发包里提供了两个使用CopyOnWrite机制实现的并发容器,它们是C...

Handshake failed due to invalid Upgrade header: null 解决方案

解决方案,在 Nginx ,location中添加以下红色代码:proxy_set_headerUpgrade$http_upgrade;proxy_set_headerConnection "upgrade"; server{listen80;server_namelocalh...

Spring4新特性——集成Bean Validation 1.1(JSR-349)到SpringMVC

Spring4新特性——泛型限定式依赖注入Spring4新特性——核心容器的其他改进Spring4新特性——Web开发的增强Spring4新特性——集成BeanValidation1.1(JSR-349)到SpringMVC...

maven 错误:读取 xxx.jar 时出错;invalid LOC header (bad signature) 1 错误

 reqHeader:{Accept=text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8,Upgrade-Insecure-Requests=1,Connection=keep-alive,User-Agent=Mozilla/5.0...

Download link in response body does not work--待解决

Iamhavingaproblemsimilartotheonesdescribedin #374 and #1196.Ihaveaservicewhichreturnsapdffileasattachmentwith Content-Disposition heade...

Hibernate Validator 6.0.9.Final

Validatingdataisacommontaskthatoccursthroughoutallapplicationlayers,fromthepresentationtothepersistencelayer.Oftenthesamevalidationlogicisimplementedineachlayer...
代码星球 ·2020-04-04

Java Bean Validation(参数校验) 最佳实践

 37.ValidationThemethodvalidationfeaturesupportedbyBeanValidation1.1isautomaticallyenabledaslongasaJSR-303implementation(suchasHibernatevalidator)isonthecl...

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

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

INSERT ... ON DUPLICATE KEY UPDATE产生death lock死锁原理

编辑    我们在实际业务场景中,经常会有一个这样的需求,插入某条记录,如果已经存在了则更新它如果更新日期或者某些列上的累加操作等,我们肯定会想到使用INSERT...ONDUPLICATEKEYUPDATE语句,一条语句就搞定了查询是否存在和插入或者更新这几个步骤,但是使用这条...

Spring Webflux: Kotlin DSL [片断]

原文链接:https://dzone.com/articles/spring-webflux-kotlin-dsl-snippets作者:BijuKunjummen译者:JackieTang如果您还没有玩转SpringWebflux,那么可以使用基于kotlin的DSL开发一个函数式API。SpringWebflux最...

Spring3.1 对Bean Validation规范的新支持(方法级别验证)

上接Spring提供的BeanPostProcessor的扩展点-1继续学习。 一、BeanValidation框架简介写道BeanValidationstandardizesconstraintdefinition,declarationandvalidationfortheJavaplatform.大体意...

MonolithFirst

AsIhearstoriesaboutteamsusinga microservicesarchitecture,I'venoticedacommonpattern.Almostallthesuccessfulmicroservicestorieshavestartedwithamonoliththatgot...
代码星球 ·2020-04-04
首页上一页...886887888889890...下一页尾页