#F

Thinkpad Fn键与Ctrl键互换【不通过BIOS】

 Win+R打开运行,输入 control 来打开控制面板:   点击“Lenovo-键盘管理器”:   在 键盘管理器 中 选中“互换Fn键和Ctrl键&rdqu...

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

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

FastJson autoType is not support

 最近项目里用到了阿里巴巴的fastjson工具,遇到一些问题,记录分享一下github说明:fastjson是阿里巴巴的开源JSON解析库,它可以解析JSON格式的字符串,支持将JavaBean序列化为JSON字符串,也可以从JSON字符串反序列化到JavaBean。使用:添加maven依赖<depe...

版本不匹配引发的坑:javax.validation.UnexpectedTypeException: HV000030: No validator could be found for constraint

发现一个API报了错:javax.validation.UnexpectedTypeException:HV000030:Novalidatorcouldbefoundforconstraint'javax.validation.constraints.NotEmpty'validatingtype'java.lang...

组件注册-自定义TypeFilter指定过滤规则

  组件注册-自定义TypeFilter指定过滤规则4.1FilterType.ANNOTATION按照注解方式4.2FilterType.ASSIGNABLE_TYPE按照给定的类型@ComponentScan.Filter(type=FilterType.ASSIGNABLE_TYPE,clas...

修改Feign数据解析,由jackson改为fastjson,同时解决fastjson中Content-Type问题

 https://my.oschina.net/u/3419586/blog/2964047背景:在用FeignClient接口调用,由于jackson对null等特殊值处理存在异常,故改用fastjson解析数据操作步骤:1.增加文件FeignConfig,注入Bean,修改默认Feign默认的解析方式2....

Spring Data JPA整合REST客户端Feign时: 分页查询的反序列化报错的问题

 Typedefinitionerror:[simpletype,classorg.springframework.data.domain.Page];nestedexceptioniscom.fasterxml.jackson.databind.exc.InvalidDefinitionException:...
代码星球 ·2020-04-04

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

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

Github api【Restful接口规范】

ThisdescribestheresourcesthatmakeuptheofficialGitHubRESTAPIv3.Ifyouhaveanyproblemsorrequests,pleasecontact GitHubSupport.CurrentversionSchemaAuthentication...

KDiff3使用指南

http://kdiff3.sourceforge.net/KDiff3isadiffandmergeprogramthatcomparesormergestwoorthreetextinputfilesordirectories,showsthedifferenceslinebylineandcharacterbyc...
代码星球 ·2020-04-04

limits the number of elements in an IN predicate to 2100 entries.

org.hibernate.engine.jdbc.spi.SqlExceptionHelper131-[TxId:f68db5f5b-qmgnc^1561639897640^271530,SpanId:360544073895766848]Theincomingtabulardatastream(TDS)remote...

注解 @EnableFeignClients 工作原理

 概述在Springcloud应用中,当我们要使用feign客户端时,一般要做以下三件事情:使用注解@EnableFeignClients启用feign客户端;示例:@SpringBootApplication@EnableFeignClientspublicclassTestApplication{publ...

@EnableFeignClients 客户端详细

在Springcloud应用中,当我们要使用feign客户端时,一般要做以下三件事情:1.使用注解@EnableFeignClients启用feign客户端;示例:@SpringBootApplication@EnableFeignClientspublicclassTestApplication{publicstat...

Feign发送Get请求时,采用POJO对象传递参数的最终解决方案 Request method 'POST' not supported (附带其余好几个坑)

yml:feign:httpclient:enabled:trueproperties:#feignfeign.httpclient.enabled=true <!--https://mvnrepository.com/artifact/io.github.openfeign/feign-httpcli...

[HTTP趣谈]origin,referer和host区别

发起一个ajax请求时,requestheader里面有三个属性会涉及请求源信息。前端可能用不到这些值,但是,后台业务系统会比较关心它们,场景可能有:   处理跨域请求时,必须判断来源请求方是否合法;   后台做重定向时,需要原地址信息;作为前端,了解三者的区...
首页上一页...14051406140714081409...下一页尾页