(현상)
Sitemesh decorator와 Spring Security를 함께 사용하는 환경에서
헤더 부분에 로그인 여부를 알기 위해서 인증(Authentication) 유틸을
호출했는데 로그인 반영이 안되는 것이었다.
이틀에 걸친 삽질? ㅠㅜ
문제는 web.xml에 Sitemesh Filter가 Spring Security Filter보다 먼저 설정되어 있기 때문이다.
해결책은 web.xml에서 Sitemesh Filter를 Spring Security Filter 다음으로 내려주면 된다.
Spring Security Filter가 먼저 설정되어 있어야 한다 ㅠㅜ