Java/Spring Boot Security

Spring boot Security 에러 메세지 처리

바리새인 2024. 8. 15. 20:33

예외 발생 처리

if(member == null) {
	throw new BadCredentialsException("There in no member");
}

화면처리

<div class="alert alert-danger" th:if="${param.error}" th:utext="${session[SPRING_SECURITY_LAST_EXCEPTION].message}">
	message
</div>