목록구글클라우드플랫폼 (2)
Coding Note
구글 로그인 인증 정보를 발급받았으니 로그인 기능을 구현할게요!! 1. User 엔티티 관련 코드 작성 User 클래스 생성 domain 패키지 아래 User 패키지를 만들어 패키지안에 클래스를 생성함. - User @Getter @NoArgsConstructor @Entity public class User extends BaseTimeEntity { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @Column(nullable = false) private String name; @Column(nullable = false) private String email; @Column private String picture;..
Q1. 스프링 시큐리티(SpringSecurity)? 인증(Authentication)과 인가(Authorization) 혹은 권한 부여 기능을 가진 프레임 워크 = 스프링 기반의 애플리케이션에서는 보안을 위한 표준 책 기반에 따라 스프링 부트 2.0 방식인 Spring Security Oauth2 Client 라이브러리를 사용해서 진행함! 스프링 부트2.0 방식은 client 인증 정보만 입력하면 된다. 1. 구글 서비스 등록 구글 서비스에서 발급된 인증 정보를 통해서 로그인 기능과 소셜 서비스 기능을 사용할 수 있으니 무조건 발급받고 시작해야 된다! 구글 클라우드 플랫폼 홈페이지 접속! Google Cloud Platform 하나의 계정으로 모든 Google 서비스를 Google Cloud Platf..