Dave Syer
Dave Syer
Also try 1.0.31 because there were some changes in the Gradle plugin to support Gradle 8.
It looks to me like the least disruptive solution to this issue would be to add a new interceptor that uses `AuthorizationManager` instead of `AccessDecisionManager`. Neither Spring Security nor Spring...
See my comments in https://github.com/yidongnan/grpc-spring-boot-starter/issues/778#issuecomment-1342768872. There's a link to a sample there.
There's a link to a sample SSE renderer project in https://github.com/spring-projects/spring-framework/issues/32112. It breaks if you use the `ThreadLocalAccessor` from 6.2 snapshots, but not by throwing exceptions - you just get...
Sounds interesting. I'm not sure we want to take another dependency (maybe there isn't one?), but I'd be interested to see the implementation anyway. I think all you are asking...
Please do. My preference would be to add a security layer to the gateway, and make the other apps clients of that (so they need a token and a token...
@venkatnpedada that doesn't really make any sense to me. Why would you need a config server embedded in an integration test?
Unless I'm missing something you would have the last 3 steps even if `thin.libs` worked a bit differently. IMHO it's a bad idea to rely on classpath ordering to prioritize...
`TestSocketUtils` isn't really suitable for use outside a test. It would be better if `GrpcServerProperties` just returned 0 if it was set to 0, and then you wouldn't need the...
The good news is that if you don't use `grpc.server.port=0` then everything works, at least in a vanilla server sample. That gives us some wiggle room. Maybe it would be...