why there is not a holder class for Response like RequestContextHolder

前端 未结 2 671
粉色の甜心
粉色の甜心 2021-01-19 21:31

Why Spring does not have a class like RequestContextHolder for HttpServletResponse? There are some cases I need to access response object. For example spring se

2条回答
  •  终归单人心
    2021-01-19 22:23

    If you do not find a better solution, then you can extend the UsernameAndPasswordAuthenticationFiter http://docs.spring.io/autorepo/docs/spring-security/3.0.x/apidocs/org/springframework/security/web/authentication/UsernamePasswordAuthenticationFilter.html (or the AuthenticationFilter you use instead) there you have Access to the Request and Response.

提交回复
热议问题