Spring security 5.1.0.Rc1 has come up with support for OAuth2 Resource Servers in webflux - https://spring.io/blog/2018/08/21/spring-security-5-1-0-rc1-released .
The example given here talks about Oauth2 based on JWT format . how can i configure a oauth2 resource server based and specify the token decoding uri .
In spring MVC i could use @EnableResourceServer and security.oauth2.resource.token-info-uri property . How would i do the same with webflux ?