일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- java
- 페이스북
- spring boot
- 스프링부트
- 스프링
- Refactoring
- 비동기
- apache
- JPA
- Producer
- 페이징
- OAuth
- GC
- assertj
- Spring
- 클린코드
- RabbitMQ
- tomcat
- g1
- Security
- gdg
- oauth2
- load balancing
- JWT
- 시큐리티
- jvm
- 리팩토링
- clean code
- 권한
- 스프링 부트
- Today
- Total
목록페이스북 (2)
허원철의 개발 블로그
저번 글 중에 OAuth2 에 대한 글이 있습니다. 이번에는 진짜로 소셜 로그인을 해보기 위한 글 입니다. 1. Gradle 설정2. facebook developer 인증3. properties 설정4. Controller 설정5. html 작성6. 결과 1. Gradle 설정- 본 내용은 가이드를 참고 하였습니다... dependencies { compile('org.springframework.boot:spring-boot-starter-social-facebook') compile('org.springframework.boot:spring-boot-starter-thymeleaf') testCompile('org.springframework.boot:spring-boot-starter-test')..
이번 글을 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..