Configure Swagger-UI to pick up Spring's HttpSecurity Logout endpoint
问题 I have Swagger set up and working for all of the controllers listed in my application. However, I want it to pick up the Spring Security Logout Endpoint and I cannot find a way to get it to work. As you can see from code snippet below I am specifying a logoutUrl for a user to invalidate their session. I've tried class level annotation markings and method level, but no luck. Any ideas? @Override public void configure(HttpSecurity http) throws Exception { http.addFilter(someFilter()); http