Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 멋쟁이사자처럼
- 멋사 합격
- 멋쟁이사자처럼대학
- 멋사
- 알림봇
- 멋쟁이사자처럼11기
- IT동아리
- 멋사 면접
- 멋사10기
- 코딩동아리
- 디스코드봇
- 파이썬 크롤링
- API
- 기사 제목 크롤링
- 멋사12
- 깃허브
- 크롤링
- ㅏㄴ
- 멋쟁이사자처럼10기
- 백엔드
- 멋사 서류평가
- 멋쟁이 사자처럼
- 멋쟁이사자처럼 서류
- 멋사 서류
- 파이썬
- 멋사 10기
- discord
- 멋사11기
- django
- 웹동아리
Archives
- Today
- Total
ACHO.pk devlog
[Springboot] 스프링데이터 JPA 본문
인프런 김영한 강사님의 "스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술"의 강의를 듣고 학습하였습니다.
스프링 데이터 JPA: JPA를 편리하게 사용하도록 도와주는 기술
스프링 데이터 jpa는 단순 반복을줄이고 기본 CRUD기능도 제공한다.
crud => 데이터 생성(Create), 검색(Read), 갱신(Update), 삭제(Delete)
스프링 데이터 JPA 회원 포지토리
▹src/repository/SpringDataJpaMemberRepository
package Springboot.study.repository;
import Springboot.study.domain.Member;
import org.springframework.data.jpa.repository.JpaRepository;
import java.util.Optional;
public interface SpringDataJpaMemberRepository extends JpaRepository<Member, Long>, MemberRepository {
Optional<Member> findByName(String name);
}
인터페이스가 인터페이스를 받을 때는 extends를 사용해야한다. 인터페이스는 다중상속이 가능하다.
JpaRepository 와 MemberRepository 인터페이스를 가져온다.
findByName()만 적어주면 따로 더 구현할 것이 없다. (save(), findById(), findAll()은 이미 만들어져있다.)
스프링 데이터 JPA 회원 리포지토리를 사용하도록 스프링 설정 변경
springConfig 파일 수정
package Springboot.study;
import Springboot.study.repository.JdbcTemplateMemberRepository;
import Springboot.study.repository.JpaMemberRepository;
import Springboot.study.repository.MemberRepository;
import Springboot.study.repository.MemoryMemberRepository;
import Springboot.study.service.MemberService;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import javax.persistence.EntityManager;
import javax.sql.DataSource;
@Configuration
public class SpringConfig {
private final MemberRepository memberRepository;
public SpringConfig(MemberRepository memberRepository) {
this.memberRepository = memberRepository;
}
@Bean
public MemberService memberService() {
return new MemberService(memberRepository);
}
}
스프링 데이터 JPA가 SpringDataJpaMemberRepository를 스프링 빈으로 자동 등록해준다.
memberRepository를 인잭션 받아서 등록해준다.
스프링 데이터 JPA 제공 기능
• 인터페이스를 통한 기본적인 CRUD
• findByName() , findByEmail() 처럼 메서드 이름 만으로 조회 기능 제공
• 페이징 기능 자동 제공
'프레임워크 > Springboot' 카테고리의 다른 글
[Springboot-쇼핑몰프로젝트] 환경 구축과 Mysql 연동 (0) | 2023.02.04 |
---|---|
[Springboot] AOP 적용 (0) | 2023.01.27 |
[Springboot] JPA (0) | 2023.01.25 |
[Springboot] 스프링 JdbcTemplate (0) | 2023.01.25 |
[Springboot] 스프링 통합 테스트 (0) | 2023.01.24 |
Comments