Spring boot Security 에러 메세지 처리
2024. 8. 15. 20:33ㆍJava/Spring Boot Security
예외 발생 처리
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>
'Java > Spring Boot Security' 카테고리의 다른 글
Spring boot Security 2FA OTP 적용 (0) | 2024.08.19 |
---|---|
Spring boot Security 비밀번호 비교 (0) | 2024.08.15 |
Spring boot Security Authentication 데이터 내용 (0) | 2024.08.15 |
Spring boot Security 객체 참조 (0) | 2024.08.13 |
Spring boot Security blocked:mixed-content 에러 (0) | 2024.08.11 |