반응형

2020/06 2

Spring Security + JWT를 활용한 토큰 기반 인증 구현 (with Spring Boot)

Spring Security는 Spring Framework 기반 웹 애플리케이션의 보안을 담당하는 프레임워크입니다.Spring Security is a framework that provides authentication, authorization, and protection against common attacks. With first class support for both imperative and reactive applications, it is the de-facto standard for securing Spring-based applications.웹 보안은 기본적으로 요청하는 사용자를 식별하는 인증(Authenticate)과 인증된 사용자가 보호된 리소스에 접근할 권한이 있는지 확인하는..

리눅스 zip, unzip 압축, 압축 풀기

리눅스 환경에서 zip으로 압축 및 .zip파일을 압축해제하는 zip, unzip 명령어에 대해 정리합니다.1. zipzip 명령어를 통해 특정 파일 혹은 디렉토리를 압축할 수 있습니다.zip [압축 파일명.zip] [압축 대상] [압축 대상]...특정 디렉토리 압축-r 옵션은 대상 디렉토리 하위에 또 다른 폴더가 있을경우 전부 포함시키라는 옵션입니다.zip -r [압축 파일명.zip] [압축 대상 디렉토리]# test 폴더 전체 압축해 test.zip 생성zip -r test.zip test/*2. unzipunzip 명령어를 통해 zip파일 압축 해제를 할 수 있습니다.현재 폴더에 압축 풀기unzip [압축 파일명.zip]특정 디렉토리에 압축 풀기unzip [압축 파일명.zip] -d [압축 풀 경로..

DevOps/Unix, Linux 2020.06.02