摘要:
描述 报错:feign.RetryableException: Read timed out executing POST http://server-fish-goods/api/cart/del-cart 在使用order远程调用goods模块的时候因为是debug启动,在远程调用过程中响应时间 阅读全文
摘要:
问题描述 再order服务中调用goods的服务(order远程调用) 使用nacos作为注册中心和配置中心,再使用openfeign作为远程调用 消费者:server-fish-order 生产者:server-fish-goods 报错:java.lang.RuntimeException: c 阅读全文
摘要:
@TableFIled 在字段上使用注解@TableFIled public class User { /** * 创建时间 */ @TableField(value = "create_time", fill = FieldFill.INSERT) @DateTimeFormat(pattern 阅读全文
摘要:
异常信息 org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot deserialize value of type `java.time.LocalDateTime` 阅读全文
摘要:
配置springboot中返回的json不包含null的属性值 import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.databind.ObjectMapper; import org.sp 阅读全文
摘要:
完整异常信息 com.fasterxml.jackson.core.JsonParseException: Unrecognized token 'provider': was expecting (JSON String, Number, Array, Object or token 'null' 阅读全文
摘要:
题目 有一款游戏,过关的方式是按按钮。 游戏一共有n关,每一关有a[i]个按钮,其中只有唯一一个按钮是可以通关的,按下其他的按钮游戏就会失败。 好在这个游戏可以重来,而且由于设计者的疏忽,每一关的通关按钮是不变的,所以你可以记住前几关的按钮,重来时就可以直接通关。 但是...你的运气似乎用在了其他地 阅读全文
摘要:
(+=) 与 (= ?+) 在赋值中使用二院运算符 // 运算符要放在 = 号左边 x += 4 等价于 x = x+4 注意 如果运算符得到一个值(x=10),其类型与左侧操作数的类型不同(假设为: 10.0),就会发生强制类型转换。 例如,x是一个int,则 x += 10.0 是合法的,将把x 阅读全文
摘要:
题目 盛最多水的容器 思路1(暴力破解) 迭代每两个组合 找到最大值并输出 题解 class Solution { public int maxArea(int[] height) { int ans= 0; for (int i = 0; i < height.length - 1; i++) { 阅读全文
摘要:
Shiro身份验证 认证: 判断一个用户是否为合法用户的处理过程。即提供用户名和密码,检验是否与数据库存储的用户名密码一致。 Shrio中认证的管家对象 Subject:主体 访问系统的用户 Principal:身份信息 身份,即主体的标识属性,可以是任何东西,如用户名、邮箱等,唯一即可。 一个主体 阅读全文