bug
文章平均质量分 66
卡卡东~
人脑像计算机也不够
展开
-
【bug记录】This attempt to set a cookie via a Set-Cookie header was blocked because it had the “Secure“
This attempt to set a cookie via a Set-Cookie header was blocked because it had the "Secure"错误原因为:尝试通过Set-Cookie头设置具有“secure”属性的cookie,但未通过安全连接接收,因此被阻止。因为具有“secure”属性的cookie只能通过安全的https连接传输,所以浏览器阻止了此操作。查看了一下访问协议,确实是使用了http协议地址。然后查看这个接口对于cookie的设置。这个接口是登录原创 2023-09-18 14:57:50 · 3737 阅读 · 1 评论 -
nested exception is java.io.FileNotFoundException: class path resource [xxx.class] cannot be opened
class path resource [xxx.class] cannot be opened because it does not existnested exception is java.io.FileNotFoundException: class path resource [***.class]cannot be opened原创 2023-08-09 17:07:56 · 1481 阅读 · 0 评论 -
bug记录:java.lang.UnsupportedOperationException
java.lang.UnsupportedOperationException 最近遇到一个这样的问题,报错如下:模拟的代码:想要对一个list处理,但是通过Optional.ofNullable防止为空,如果为空,则返回一个Collections.emptyList(),空的List。之后对返回的stringList做新增处理,调用add方法,就报错了。原创 2023-02-07 11:25:16 · 721 阅读 · 0 评论 -
Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded datasource could
Description:Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.Reason: Failed to determine a suitable driver classAction:Consider the following: If you want an embedded database (H2,原创 2022-08-23 14:28:30 · 379 阅读 · 0 评论 -
ES查询不存在的索引,索引未创建导致查询报错
项目中的一个es索引是根据时间建立的,在对其操作时候,因时间原因此索引为创建,查询时候报如下错误:`[Elasticsearch exception [type=index_not_found_exception, reason=no such index [xxx_xxx_xxx_202206]]]`可以看到报错原因是因为此索引未发现,不存在。网上查了没找到具体做法,有方法是在查询时候判断是否存在的。但是我们想要的是,==怎样在查询时候忽略不存在的index==原创 2022-06-02 11:00:44 · 12272 阅读 · 3 评论 -
influxdb的保留策略不生效解决方法
遇到的一个问题:对influxdb中的库加保留策略后,默认的保留策略对表中数据不生效,无法清理其中超时内容。下面写一下当时的解决办法原创 2022-02-08 15:38:57 · 2560 阅读 · 2 评论 -
使用eureka报Cannot execute request on any known server
使用eureka报Cannot execute request on any known server用eureka做注册中心的时候,创建一个服务userService想要放到eureka注册中心上。添加client依赖:<!--eureka--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId&原创 2021-10-12 10:03:05 · 202 阅读 · 0 评论 -
CreateProcess error=5, 拒绝访问。
CreateProcess error=5, 拒绝访问。使用JAVA的Runtime.getRuntime().exec()遇到的bug使用JAVA的Runtime.getRuntime().exec()遇到的bug今天在使用一个wkhtmltopdf工具的时候需要用到JAVA的一个方法,*Runtime.getRuntime()返回当前应用程序的Runtime对象,该对象的exec()方法指示Java虚拟机创建一个子进程执行指定的可执行程序,并返回与该子进程对应的Process对象实例。通过Proce原创 2021-09-23 10:19:09 · 13596 阅读 · 3 评论