티스토리 뷰
Spring/Spring Security
Spring Security : Web MVC + Security - Security JSP Tag Library 사용하기
Korean Eagle 2020. 5. 17. 15:51728x90
1. 스프링 security는 사용자와 권한 정보에 접근할 수 있는 Tag lib를 제공한다.
1-1 이 tag lib로 principal 객체를 접근할 수 있고 다양한 정보를 참조할 수 있다.
1-2 사용하는 방법은
1-2-1 spring security taglibs를 dependency에 추가한다.
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
<version>${springsecurity.version}</version>
</dependency>
1-2-2 사용할 jsp페이지에 taglib include한다.
1-2-2-1 로그인 후에 접근했던 페이지가 열린 것이라고 가정한다.
1-2-3 페이지에서 필요한 곳에 <security:authentication property=""> 테그를 사용한다.
1-2-3-1 아래의 소스를 보면 username, authories라는 principal객체의 속성을 참조하여 user와 권한을 가져온다.
<!-- 추가한 security taglib -->
<%@ taglib prefix="security" uri="http://www.springframework.org/security/tags" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous">
<title>Spring Security Custom Login Form</title>
</head>
<body>
<div class="container">
<h2>Company Website</h2>
<hr>
<p>You are now logged in</p>
<p>
User :: <security:authentication property="principal.username"/>
</p>
<p>
Roles(s) :: <security:authentication property="principal.authorities"/>
</p>
<form:form action="${ pageContext.request.contextPath }/logout" method="POST">
<input type="submit" class="btn btn-primary" value="Logout"/>
</form:form>
</div>
</body>
</html>
1-2-4 결과 페이지
728x90
'Spring > Spring Security' 카테고리의 다른 글
Spring Security : Web MVC + Security - 페이지 접근 제어 (0) | 2020.05.17 |
---|---|
Spring Security : Web MVC + Security - Landing Page 사용하기 (0) | 2020.05.17 |
Spring Security : Web MVC + Security - CSRF token 다루기 (0) | 2020.05.17 |
Spring Security : Web MVC + Security - Logout 기능 구현 (0) | 2020.05.17 |
Spring Security : Web MVC + Security - Custom Login Form 만들기 (0) | 2020.05.16 |
댓글
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
- 도커 개발환경 참고
- AWS ARN 구조
- Immuability에 관한 설명
- 자바스크립트 멀티 비동기 함수 호출 참고
- WSDL 참고
- SOAP 컨슈머 참고
- MySql dump 사용법
- AWS Lambda with Addon
- NFC 드라이버 linux 설치
- electron IPC
- mifare classic 강의
- go module 관련 상세한 정보
- C 메모리 찍어보기
- C++ Addon 마이그레이션
- JAX WS Header 관련 stackoverflow
- SOAP Custom Header 설정 참고
- SOAP Custom Header
- SOAP BindingProvider
- dispatcher 사용하여 설정
- vagrant kvm으로 사용하기
- git fork, pull request to the …
- vagrant libvirt bridge network
- python, js의 async, await의 차이
- go JSON struct 생성
- Netflix Kinesis 활용 분석
- docker credential problem
- private subnet에서 outbound IP 확…
- 안드로이드 coroutine
- kotlin with, apply, also 등
- 안드로이드 초기로딩이 안되는 경우
- navigation 데이터 보내기
- 레이스 컨디션 navController
- raylib
TAG
- Validation
- Angular
- 스프링부트
- Security
- MYSQL
- Many-To-Many
- XML
- 매핑
- 스프링
- Rest
- WebMvc
- 로그인
- Spring
- one-to-many
- 설정하기
- 하이버네이트
- mapping
- login
- 상속
- 외부파일
- one-to-one
- Spring Security
- RestTemplate
- spring boot
- crud
- 설정
- 자바
- form
- hibernate
- jsp
250x250