일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- ReactJS
- devops
- springboot
- JVM
- AWS
- Spring
- javascript
- redis
- MySQL
- linux
- php
- ubuntu
- Spring Boot
- jsp
- IntelliJ
- jenkins
- elasticsearch
- 요리
- it
- tool
- Web Server
- Git
- Oracle
- 맛집
- java
- laravel
- Spring Batch
- db
- Gradle
- Design Patterns
- Today
- Total
목록Java & Kotlin/Spring Security (5)
아무거나
소스: base-document/springsecurity.md at master · bkjeon1614/base-document (github.com) Spring Security + H2 DB + Swagger 연동시 페이지 접근 예외 처리 [SecurityConfig.java] import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; import org.springframework.security.config.annotation.web.configura..
[spring] 보안 Security - 2 1. 보안 관련 taglibs 추가 [dependencies 추가 pom.xml] 이클립스 기준 pom.xml -> 하단 Dependencies탭 클릭 -> Add.. 클릭 -> Enter groupId, artifactId or sha1 prefix ... 에 security 검색 -> org.springframework.security(spring-security-taglibs) 선택 [선언부] USER ID : Log Out 2. 보안 관련 taglibs 사용 방법 [before] is Log-In is Log-Out [after] is Log-In is Log-Out 참고: https://www.inflearn.com/course/%EC%9E%90%EB..
[spring] 보안 Security - 1 1. 보안 관련 라이브러리 추가 방법 1. https://docs.spring.io/spring-security/site/docs/5.0.6.RELEASE/reference/htmlsingle/ 에서 다운받거나 dependency 추가 방법 2. 이클립스 기준 pom.xml -> 하단 Dependencies탭 클릭 -> Add.. 클릭 -> Enter groupId, artifactId or sha1 prefix ... 에 security 검색 -> org.springframework.security(spring-security-acl) 선택 (1) security-context.xml 생성 ( src/main/webapp/WEB-INF/spring/appSe..
Spring Boot + Spring Security + Mybatis + Thymeleaf + Gradle 로그인 기능 구현 [Document] Tistory: https://bkjeon1614.tistory.com/76 Github: https://github.com/bkjeon1614/java-example-code/tree/master/spring-boot-security-mybatis [Development Environment] IntelliJ IDEA Ultimate SpringBoot 2.1.2.RELEASE Java8 Gradle Lombok [Project] 1. 프로젝트 생성 File -> New -> Project 선택 Project 정보 입력 dependency 선택 Project..
Spring Security를 적용하게되면 로그인을 안할 시에 로그인 페이지(/login)으로 이동시키는 기능을 적용해 놓았다. 그런데 만약 로그인 필요없이 특정 path에 접근하고 싶을때 Security Config 파일에서 아래와 같이 코드를 적용시켜보자.(ex: css,js 및 특정 api(=/api/test)에 대해 허용해놓음) import javax.sql.DataSource; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Configuration; import org.springframework.security.config.annotation.au..