의존성에 compile('org.thymeleaf.extras:thymeleaf-extras-springsecurity5')
일케 추가하면 된다고 나와있는데...
html 코드에 sec:autorize="permitAll()" 붙이면 권한이랑 관계없이 무조건 보여야 하는데 그 블록이 그냥 사라져 버립니다...
이거 대체 뭐죠?? ㅠㅠㅠ 디버그 키고 해도 오류 하나 안잡히는데..
<해결완료>
---------------------------------------------------------
멍청하게도
WebSecurityConfigurerAdapter 상속체의
public void configure(WebSecurity web) throw Exception{...} 메소드에서
web.ingnoring().antMatchers("경로"); 설정한곳에서 시큐리티 기능을 사용하려고 했네요...
여기 등록된 경로는 시큐리티 필터를 거치지 않아서 발생하는 문제였나 봅니다 ㅠㅠ
https://spring.io/projects/spring-security
여기서
찾으셈