Martin Kanters
Martin Kanters
I've seen the same behavior on 3.0.0 + WebMVC when the controller is defined as follows: ```java @PutMapping(value = "/controller-path", consumes = APPLICATION_JSON_VALUE, produces = APPLICATION_JSON_VALUE) public ResponseEntity controllerName(@RequestBody final...
@asgaardwro Didn't my previous suggestion work which I've posted on the 7th of August? By avoiding the `Void` type and using the primitive `void` instead it should work (`public void...
@asgaardwro Hmm yeah, it will be annoying to work around that as well, but you could use something like custom exception handlers or Spring's `ResponseStatusException` to return different response codes...
Thanks for creating this. I agree that all of these means of authentication would be valuable, but these can be fixed in multiple PRs/iterations, right? Otherwise this has the risk...
> it depends, I want first check how it can be implemented, potentially there will be an easy way to do it in one go, and if not - at...
Took a quick look at it and it looks fine to me!
Thanks for the review and merge @gnodet and @michael-o !
> RU sure you don't need to perform lookup on each call (instead to keep the map in final member?) This is a singleton, so the map you lookup in...
> Ah, then it is indeed best to lookup the map once and store it in an member variable. Good suggestion! Just realized you meant exactly the opposite. Anyway, changed...
> @MartinKanters Should I test again after your followups? I took care of that :)