#CH

Java switch case

JDK1.8importlombok.extern.slf4j.Slf4j;importorg.junit.Test;@Slf4jpublicclassSwitchTest{@TestpublicvoidgivenByte_then(){Byteflag=1;switchMethod(flag);flag=2;swit...
代码星球 ·2020-04-04

Elasticsearch优化

 2.out of memory错误因为默认情况下es对字段数据缓存(Field Data Cache)大小是无限制的,查询时会把字段值放到内存,特别是facet查询,对内存要求非常高,它会把结果都放在内存,然后进行排序等操作,一直使用内存,直到内存用完,当内存不够用时...
代码星球 ·2020-04-04

java.lang.IllegalArgumentException: Illegal character in query at index ...解决办法

今天在写智能机器人问答实现的时候遇到了一个问题,就是我发送消息不能输入空格给我报了一个错误java.lang.IllegalArgumentException:Illegalcharacterinqueryatindex说是我输入的数据有问题,在这里说明因为在我们使用的是get方式传输数据,它会在url后面跟上你所带的...

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...

Binary String Matching

描述GiventwostringsAandB,whosealphabetconsistonly‘0’and‘1’.YourtaskisonlytotellhowmanytimesdoesAappearasasubstringofB?Forexample,thetextst...
代码星球 ·2020-04-04

Apache HttpClient在PUT/POST时的一个坑

结论:Feign如果使用Apache HttpClient,PUT/POST时,传参时尽量使用RequestBody。如果没有RequestBody,QueryString会被Apache HttpClient转换成表单中key value进行提交,这样数据接口方就会取不到报错了像往常一样...

com.github.pagehelper.PageHelper cannot be cast to org.apache.ibatis.plugin.Interceptor

 <dependency><groupId>com.github.pagehelper</groupId><artifactId>pagehelper</artifactId><version>4.0.0</version>&...

数据库-----catalog与schema简介

在SQL环境下Catalog和Schema都属于抽象概念,主要用来解决命名冲突问题 一个数据库系统包含多个Catalog,每个Catalog包含多个Schema,每个Schema包含多个数据库对象(表、视图、字段等) 如数据库对象表的全限定名可表示为:Catalog名.Schema名.表名 ...

synchronized原理及优化,(自旋锁,锁消除,锁粗化,偏向锁,轻量级锁)

 偏向锁:不占用CPU自旋锁:占用CPU。代码执行成本比较低且线程数少时,可以使用。不经过OS。内核态,效率偏低 理解Java对象头与Monitor在JVM中,对象在内存中的布局分为三块区域:对象头、实例数据和对齐填充。如下:   实例变量:存放类的属性数据信息,包括父...

没有连接的AMQP / RabbitMQ通道何时死亡?(when does an AMQP/RabbitMQ channel with no connections die?)

 IhaveasimpleRabbitMQtestprogramrandomlyenqueuingmessages,andanotherreadingthem,allusingSpring-AMQP.Iftheconsumerdies(forexamplekillingaprocesswithouthavin...

Chrome 禁止 http 自动转化为https

 地址栏中输入 chrome://net-internals/#hsts在 Deletedomainsecuritypolicies 中输入项目的域名,并 Delete 删除可以在 Querydomain 测试是否删除成功这里如果还是不行,...

java.lang.NoSuchMethodException: tk.mybatis.mapper.provider.SpecialProvider.<init>()

 Causedby:org.apache.ibatis.builder.BuilderException:ErrorinvokingSqlProvidermethod(tk.mybatis.mapper.provider.SpecialProvider.dynamicSQL).Cause:java.lang....

在Java8的foreach()中不能break,如果需要continue时,可以使用return

今天使用lambda表达式处理集合时,发现对return、break以及continue的使用有点迷惑,于是自己动手测试了一下,才发现在使用foreach()处理集合时不能使用break和continue这两个方法,也就是说不能按照普通的for循环遍历集合时那样根据条件来中止遍历,而如果要实现在普通for循环中的效果时...

Chrome开发者工具Debug入门

Chrome搜前端的接口代码:        译者按: 手把手教你摆脱console.log,掌握高级的debug方法。原文: LearnHowToDebugJavaScriptwithChromeDevTools译者:...

安装docker管理工具rancher

http://blog.csdn.net/freewebsys/article/details/51136562  rancher是一个Docker的管理系统。http://rancher.com/ 相同类似的系统还有,http://shipyard-project.com/。 ...
首页上一页...395396397398399...下一页尾页