问题备注
将平时碰到的问题记录下来,以供后续学习使用
hry2015
这个作者很懒,什么都没留下…
展开
-
问题备忘:Spring Cloud OAuth2.0 开发过程中碰到的问题
Spring Cloud OAuth2.0 开发过程中碰到的问题:1.Spring Security – There is no PasswordEncoder mapped for the id “null”2. 调用接口/com-oauth/oauth/check_token失败3.问题3: 在使用密码模式时,抛出异常:o.s.s.o.provider.endpoint.TokenEndpoint : Handling error: UnsupportedGrantTypeException,原创 2019-07-17 23:11:55 · 6741 阅读 · 0 评论 -
问题备忘:Ftp上传文件线程一直阻塞在SocketInputStream.socketRead处
commons-net里使用ftp执行文件上传时,导致线程阻塞在java.net.SocketInputStream.socketRead0,导致线程池耗费光原创 2019-06-27 20:02:17 · 2936 阅读 · 0 评论 -
问题备忘: 将工程打包成jar包运行,就报java.io.FileNotFoundException: class path resource错误
最近在在使用@Value注入文件碰到如下问题:工程在在IntelliJ IDEA开发环境里正常运行,但是一旦将工程打包成jar包运行,就报java.io.FileNotFoundException: class path resource错代码如下:通过@Value将resource目录下test/billingconfig-file.xml目录注入到Resource上@Value("cla...原创 2018-11-19 21:20:42 · 9106 阅读 · 0 评论 -
问题备忘:Cannot generate variable name for non-typed Collection parameter type
在spring mvc中,定义如下RequestMapping方法@RequestMapping(value="queryList",method = RequestMethod.POST)@ResponseBodypublic String queryList(HttpSession httpSession,@RequestBody(required = false) List<S...原创 2018-08-21 20:10:08 · 9153 阅读 · 0 评论 -
问题备忘: 服务器重启后,导致freeswitch的internal的profile无法启动
服务器断电重启后,导致freeswitch的internal的profile无法启动在fs_cli执行sofia loglevel all 9sofia profile internal start打印如下信息:2018-05-25 15:55:51.272130 [ERR] switch_core_db.c:108 SQL ERR [unsupported file for...原创 2018-08-11 11:13:06 · 4602 阅读 · 1 评论 -
问题备忘: class path resource [xx] cannot be resolved to absolute file path because it does not reside
问题描述测试服务的版本是Spring Cloud Dalston.SR5 在Spring Boot中配置https时,代码如下: @Bean @ConditionalOnExpression("#{ ${self.https.enable:false}}") public EmbeddedServletContainerFactory servletContaine...原创 2018-07-31 19:57:15 · 23586 阅读 · 5 评论 -
问题备忘: httpclient连接池异常引发的惨案
超时问题的定位 1. 网络问题 2. httpclient/ngnix超时配置参数的问题 3. GC的问题 4. 使用tcpdump抓包,分析网络包 5. 修正代码问题 6. 上线验证原创 2018-01-03 21:24:16 · 21896 阅读 · 9 评论 -
问题备忘:解决在debian8系统中Java使用非东八区时区作为默认时区
问题描述: 今天启动java程序时,发现程序使用的US/East-Indiana时区。初步判断原因是debian系统刚安装时使用US时区进行安装,导致系统的默认时区不是东八区。解决流程首先修改/etc/localtime值为CST-8,然后使用linux命令date,发现时间已经是东八区时间。然后重启java程序,但是程序中依然使用US/East-Indiana时区。有点奇怪,猜测可能是ja原创 2017-10-18 19:51:29 · 1200 阅读 · 0 评论 -
问题备忘: It is indirectly referenced from required .class files
在Maven工程里,明明已经引入相关的类,但是eclipse一直提示没有找到org.springframework.data.redis.core.RedisTemplate类:It is indirectly referenced from required .class files报错的异常类在这个jar包中 删除本地mvn库里spring-data-redis.jar,重新刷新工程强迫工程重新原创 2017-07-02 19:54:55 · 9450 阅读 · 0 评论