BUG
整理BUG
FangWenJuno
“想要得到你就要学会付出,要付出还要坚持;如果你真的觉得很难,那你就放弃,如果你放弃了就不要抱怨;普通人都是通过自己的努力,去决定自己生活的样子。”
展开
-
Shiro 与 Aop 冲突 (基于Spring Boot 项目)
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'shiroFilterFactoryBean' defined in class path resource [com/coder/walker/shiro/config/ShiroConfig.class]: BeanPostProcessor before instantiation of bean failed; nested原创 2021-08-27 11:11:41 · 1236 阅读 · 4 评论 -
Shiro框架之接受前端发送的OPTIONS预检请求
由于OPTIONS预检请求时没有携带token或cookie,shiro认为是未登录状态,则直接重定向到登录路径,前端控制台抛出Redirect is not allowed for a preflight request预检请求不允许重定向,导致我一直认为时跨域问题,参考大佬博客之后得知需要重写shiro的登录认证过滤器,放行所有的OPTIONS请求,现已解决该问题,在此记录一下,import com.java.fang.common.utils.R;import org.apache.shiro.w转载 2021-08-09 10:48:38 · 552 阅读 · 0 评论 -
org.springframework.web.multipart.MaxUploadSizeExceededException: Maximum upload size exceeded; nes
Spring boot项目文件上传大小异常spring boot项目默认文件上传大小为:1048576 bytes.不同的版本对应的配置文件配置方式不同Spring Boot 1.3.x and earliermultipart.maxFileSizemultipart.maxRequestSizeSpring Boot 1.4.x and 1.5.xspring.http.multipart.maxFileSizespring.http.multipart.maxRequestSize原创 2021-06-23 08:57:58 · 292 阅读 · 0 评论 -
oracle 报错: Cause: java.sql.SQLDataException: ORA-01810: 格式代码出现两次
Error querying database. Cause: java.sql.SQLDataException: ORA-01810: 格式代码出现两次The error may exist in com/block2025/bigdata/mapper/TmsAppTaskOrderMapper.java (best guess)The error may involve com.block2025.bigdata.mapper.TmsAppTaskOrderMapper.checkWaybil原创 2021-04-07 16:56:40 · 1035 阅读 · 0 评论 -
SpringBoot项目使用WebSocket时,使用依赖注入抛出空指针异常
原因:需求需要实时通知前端, 所以使用到了WebScoket建立连接,做到实时效果.在WebSocket根据类中使用依赖注入,抛出空指针异常,因为spring默认是单例模式,只会初始化一次WebSocket对象并注入属性一次,但是项目需要建立多个连接,在创建 第二个WebSocket对象时就不会注入, 所以抛出空指针异常解决方法:两种解决方式:一:给属性加上static 关键字, 让这个属性属于类,添加到方法区,变成共享变量二:在新建立连接的时候重新从Spring 容器中获取 Barrag原创 2021-03-10 13:40:21 · 1020 阅读 · 0 评论 -
Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL synta
Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL synta原因使用mybatis-plus 在插入数据时报错, 说我的语法错误, 找了半天, 参考了别人的博客后发现, 是我的实体类中的字段 与mysql数据库中的关键字冲突,所以抛出语法错误mysql关键字查询网站:https://dev.mysql.com/doc/refman/5.7/en/keywords.html#keywords-5-7-detai原创 2021-03-02 14:28:42 · 9277 阅读 · 0 评论 -
已解决: java 使用feign远程调用接口,响应的list集合不能使用,无法转换为map
java.lang.ClassCastException: java.util.LinkedHashMap cannot be cast to com.fangwenjun.common.To.SkuHasStockVo at java.util.stream.Collectors.lambda$toMap$58(Collectors.java:1320) ~[na:1.8.0_191] at java.util.stream.ReduceOps$3ReducingSink.accept(ReduceO原创 2021-02-24 15:54:15 · 3684 阅读 · 0 评论 -
ElasticsearchException[Elasticsearch exception [type=illegal_argument_exception, reason=Fielddata is
ElasticsearchStatusException[Elasticsearch exception [type=search_phase_execution_exception, reason=all shards failed]]; nested: ElasticsearchException[Elasticsearch exception [type=illegal_argument_exception, reason=Fielddata is disabled on text fields .原创 2021-02-22 14:58:44 · 11003 阅读 · 2 评论 -
Kibana 连接 es 连接不上: No living connections,Unable to revive connection
关闭linux 防火墙systemctl stop firewalld然后重启dockersystemctl restart docker只能修改一次, 重启虚拟机要再次修改原创 2021-02-22 13:26:15 · 1032 阅读 · 1 评论 -
java.net.SocketTimeoutException: Read timed out
使用 feign远程调用别的服务时, debug测试会报超时, 去除断点之后就不会超时原创 2021-01-28 15:21:39 · 276 阅读 · 0 评论 -
java.lang.IllegalStateException: Error processing condition on com.alibaba.cloud.nacos.discovery.rea
ERROR: java.lang.IllegalStateException: Error processing condition on com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClientConfiguration.nacosReactiveDiscoveryClient解决方法:我的这个bug 的原因是spring cloud alibaba(2.2.1) 和mybatis-plus(3.3.1) 版.原创 2021-01-13 15:41:13 · 5693 阅读 · 2 评论 -
解决 java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration,
报错问题:java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test1: 没有写启动类2: 启动类 和测试类 一定要在同一个根目录下;...原创 2021-01-11 13:37:37 · 2314 阅读 · 0 评论