본문 바로가기

전체 글89

간단한 Batch Domain 알아보기 아래의 링크를 참고하여 배치에서 사용하는 도메인을 정리합니다. 아직 부족한 실력이어서 틀린 부분이 있을 수 있습니다. 틀린 부분이 있다면 댓글이나 robin00q@naver.com으로 이메일주시면 반영하겠습니다. docs.spring.io/spring-batch/docs/current/reference/html/domain.html#domainLanguageOfBatch The Domain Language of Batch This section describes stereotypes relating to the concept of a batch job. A Job is an entity that encapsulates an entire batch process. As is common with other.. 2020. 11. 14.
OAuth2.0 구글 아이디로 로그인 조금 더 알아보기 스프링 시큐리티와 OAuth2.0으로 로그인 기능 구현 스프링 시큐리티와 OAuth 2.0으로 로그인 기능 구현 스프링 시큐리티(Spring Security)는 막강한 인증과 인과(혹인 권한 부여) 기능을 가진 프레임워크입니다.사실상 스프링 기반의 애플리케이션에서는 보안을 위한 표준이라고 보면 됩니다. 필터 기반 velog.io 위의 글에 있는 코드를 참조하여 글을 작성합니다. 0. 패키지 구조 1. 스프링 부트 어플리케이션 생성 IntelliJ를 기반으로 스프링부트 어플리케이션을 생성합니다. Springboot Initializer를 이용하여 어플리케이션을 생성하겠습니다. gradle Java11 사용 (Java 8이상이면 아무거나 사용해도 무방합니다.) 의존성은 이와 같이 추가하였습니다. lombok.. 2020. 11. 9.
Springboot Initializer build.gradle (미완) IntelliJ에서 Spring Initializer로 간단하게 스프링부트 어플리케이션을 생성하면 아래와 같은 build.gradle 이 생성된다. 추가한 의존성 lombok Spring Web plugins { id 'org.springframework.boot' version '2.3.4.RELEASE' id 'io.spring.dependency-management' version '1.0.10.RELEASE' id 'java' } group = 'me.sjlee' version = '0.0.1-SNAPSHOT' sourceCompatibility = '11' configurations { compileOnly { extendsFrom annotationProcessor } } repositorie.. 2020. 10. 24.
Jackson Deserialization Annotation 틀린 내용이 있다면 댓글이나 robin00q@naver.com으로 보내주시면 반영하겠습니다,, ^^ www.baeldung.com/jackson-annotations Jackson Annotation Examples | Baeldung The core of Jackson is basically a set of annotations - make sure you understand these well. www.baeldung.com 을 참고하고, 정리했습니다,,^^ github.com/robin00q/jackson_practice robin00q/jackson_practice Contribute to robin00q/jackson_practice development by creating an account.. 2020. 10. 18.