Dave Syer
Dave Syer
Did some digging and the problem comes from `ResourceUrlEncodingFilter` which is conditionally added to a Spring Boot app if webjars locator is on the classpath. Even the new faster webjars-locator-lite...
Another use case would be to implement the gRPC protocol (server and client side) which requires trailers to provide RPC status and content metadata. We have a longstanding request from...
There's a sample in the gRPC project ("grpc-client"). The server is not a web server, so I had to abuse the notation a bit, and write a custom `ApplicationListener`. Testjars...
TBH I'm about as fond of that idea as you are of mine. It would mean taking a dependency on `spring-boot-web-server` in the Spring gRPC autoconfiguration which is probably going...
`JsonToGrpcFilterFactory` has issues that makes it harder to use (and unusable for some projects): https://github.com/spring-cloud/spring-cloud-gateway/issues/3424. We could definitely improve things by relocating some of the code. It might be a...
That issue isn't relevant to the `JsonToGrpcFilterFactory` as far as I can tell (but it should be fixed too I agree). It's also kind of irrelevant to whether or not...
Not sure where exactly you mean I should do that. Here's the result: ``` > Task :generateProto FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed...
See also https://github.com/spring-projects/spring-boot/issues/43978 related to the same issue for resource servers
See also #1236 (probably would be fixed the same way - de-deuplication of classpath entries).
Why is it dead code? Is there a bug in the `@GetMapping` (works for me)?