일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스프링부트
- gdg
- JWT
- g1
- 페이스북
- 리팩토링
- 클린코드
- spring boot
- 비동기
- RabbitMQ
- clean code
- 스프링 부트
- oauth2
- GC
- java
- JPA
- tomcat
- 권한
- Spring
- jvm
- 페이징
- load balancing
- Security
- 시큐리티
- Producer
- Refactoring
- apache
- 스프링
- assertj
- OAuth
- Today
- Total
목록Security (4)
허원철의 개발 블로그
이번 편은 spring boot 와 security 조합에서 jwt를 더해 예제를 만들어 보았습니다. Gradle 설정 123456789dependencies { compile('org.springframework.boot:spring-boot-starter-data-jpa') compile('org.springframework.boot:spring-boot-starter-security') compile('com.auth0:java-jwt:3.1.0') compile('org.springframework.boot:spring-boot-starter-web') runtime('com.h2database:h2') compile('org.projectlombok:lombok') testCompile('org..
이번 편은 Session Clustering 알아보기에 이어 Spring Boot에서 Redis를 활용하여 빠르게 Session을 공유해보록 하겠습니다. 우선 전편에서 Redis에 대해 자세하게 설명하지 않아, 간단하게 설명하고 넘어가겠습니다. Redis 란? - 메모리기반 Key/Value Store 로 No-SQL 로 구분됩니다. 또한 이와 비슷한 memcached와 같은 In memory 솔루션으로도 구분되기도 합니다. 모든 데이터는 메모리에 저장되고, 매우 빠른 Write/Read 속도를 보장합니다. 하지만 메모리기반이기 때문에 실 데이터를 저장하는 것보다는 Session 과 같은 데이터를 담아두기에 적합하다고 볼 수 있습니다. 관계형 데이터베이스와 같은 데이터 형식보다는 한 로우 형태의 데이터를..
이번 글을 spring boot 에 security OAuth2 를 다룬 글 입니다. 최근, 웹 또는 앱에서 가장 많이 접하는 인증 형태가 바로 OAuth2 형태입니다.예를 들면, 페이스북 인증, 구글 인증, 다음 인증, 네이버 인증 등 이 될 수 있습니다. 1. Gradle 설정2. Properties 설정3. Application 설정4. Controller 설정5. 테스트5. DB 연동 1. Gradle 설정- security 에서 spring-sesurity-oauth2 를 추가 선언 해줍니다.dependencies { compile('mysql:mysql-connector-java') compile('org.springframework.boot:spring-boot-starter-data-jpa..
이번 게시물은 spring boot + jpa + security 에 대한 글입니다. http://www.slideshare.net/meadunhansa/ss-53303729이 자료를 많이 참고 하였습니다. 1. Gradle 설정2. Password 객체 등록3. Entity 와 Repository 생성4. security config 설정5. userDetailsService 추가6. 회원가입 및 로그인 1. Gradle 설정- 이전 게시물과 비교해 보면 security 라는 것이 추가 됩니다.dependencies { compile('org.springframework.boot:spring-boot-starter-data-jpa') compile('org.springframework.boot:spri..