기본 에러페이지
src/main/resources/templates/error.mustache
상태 코드에 따른 에러 페이지
src/main/resources/templates/error/{상태코드}.mustache
예시
경로
페이지 코드
{{>layout/header}}
<body>
<div class="container">
{{>layout/bodyHeader}}
<p>권한이 없습니다. 관리자에게 문의해주세요.</p>
<p>관리자 이메일: smpark911020@gmail.com</p>
{{>layout/footer}}
결과 화면
스프링 시큐리티를 적용하여 권한이 USER일 경우에만 정상 처리되고,
GUEST일 경우에는 403처리되게 하였다.
현재 권한이 GUEST일 경우의 예시이다.
참고
'Spring' 카테고리의 다른 글
[SpringSecurity] 구글 로그인 연동하기 7 - 어노테이션 기반으로 개선하기 (0) | 2021.06.27 |
---|---|
[SpringSecurity] 구글 로그인 연동하기 6 - 로그인 테스트 (0) | 2021.06.24 |
[SpringSecurity] 구글 로그인 연동하기 5 - 스프링 시큐리티 설정 (0) | 2021.06.21 |
[SpringSecurity] 구글 로그인 연동하기 4 - User 엔티티 관련 코드 작성 (0) | 2021.06.10 |
[SpringSecurity] 구글 로그인 연동하기 3 - .gitignore 등록 (0) | 2021.06.10 |
댓글