Spring Boot with Security OAuth2 - how to use resource server with web login form?

后端 未结 3 1845
囚心锁ツ
囚心锁ツ 2020-12-28 18:55

I have Spring Boot (1.2.1.RELEASE) application that serves OAuth2 (2.0.6.RELEASE) authorization and resource server in one application inst

3条回答
  •  一个人的身影
    2020-12-28 19:52

    what if you use different endpoints configured with different security?

    For the above example, everything with /uaa/** secured with WebSecurityConfigurerAdapter, and /api-docs/** with ResourceServerConfigurerAdapter.

    In that case, will filter chains still conflict?

提交回复
热议问题