Patrick Cornelißen
Patrick Cornelißen
This is bugging me for a long time :-(
Halloweenman in the polymer slack channel had the same problem
Maybe there should be at least a section in the documentation what to do or expect when you want to use hateoas with RestClient. I don't think that many/all users...
Example how one might have to use the mono from the builder: ```java @PostMapping public Mono getItems(@PathVariable UUID tenantId, @RequestBody ContentItem item) { item.setTenantId(tenantId); return contentItemRepository.insert(item) .doOnSuccess(contentItem -> log.info("Item add:...
I converted my service back to non-reactive :-/
That doesn't work, because the Request context, which is used to generate the link is handles differently in webflux. At east I tried to use the webmvc classes a while...
Thanks for your reply! I understand the reason for jdk serialization as "works everywhere" solution. The problem that the objects in the session need to be serializable in the defined...
Hmm, well regular json based communication doesn't include a classname either, but I see that this would be a problem as you can't provide the type when you try to...
I had tome to switch to the Jackson2JsonRedisSerializer and it looks good. For documentation purposes, this is how I've enabled it after switching to springsession and -data-redis to the 1.1.0.M1:...