Dylan Tao

Results 18 comments of Dylan Tao

[Link](https://github.com/dylan-tao/jackson-test) is based on the spring-boot-2.7.0 and jackson-2.13.3 version of the use case test, the above problems still exist, please help to confirm whether a bug, please read the detailed...

Why is left-to-right nextToken resolution lost when the problem of missing resolution is fixed by skipping child node resolution? Check out the test case project above, please~

> Why is left-to-right nextToken resolution lost when the problem of missing resolution is fixed by skipping child node resolution? Check out the test case project above, please~ Fix Code:...

> I don't understand what you are trying to say here unfortunately. What is getting lost, when? > > What I need is a unit test, without any external framework;...

> > I don't understand what you are trying to say here unfortunately. What is getting lost, when? > > What I need is a unit test, without any external...

> 目前Redisson也没有做可用性完善补充

> 你说的启动、停机指的是redis server吧,一般来说这样不能无脑无限重试,要保证消息的发送绝对成功是非常困难的。消费应该是不会失败的,因为没有IO。 > > 如果内置的不满足需求,BroadcastManager可以自己更换的,比如换成使用专门的消息队列,即便如此,也很难保证强一致,一个简单的办法是把本地缓存的超时时间弄短点。 > > redisson是另一个同学贡献的,我其实也不是很熟悉,如果有具体的问题可以提PR。 好的,我可能要2.7.x版本扩展堆外缓存,涉及到序列化可能会导致失败,缓存不一致问题。

**Java class:** `public class User { ``` private Integer userId; private String userName; private String password; public Integer getUserId() { return userId; } public void setUserId(Integer userId) { this.userId =...

thanks! Is so simple, If there is such a API would be good. ps: new JsonObject(User user).toString(); or new JsonObject(String jsonStr).toObject(User.class); Hard coding is not a good solution for Java....