OBULIPURUSOTHAMAN Kobulipurusothaman.hashnode.dev·Sep 20, 2024Spring Boot & RepositoryIn Spring Boot, the Repository pattern is used to encapsulate the logic required to access data sources. The repository serves as a middle layer between the data source (database) and the business logic, promoting clean separation of concerns and bet...26 likes·236 readsSpringboot
Merge Simpsonblog.letsdev.me·Jul 9, 2024차근차근 Modern Spring Boot 3 기초 (5) JPA Entity를 사용하는 JPA RepositoryJPA Repository 객체를 다루기 위해 알아야 할 것 JPA Repository로 만든 repository 객체들은 스프링에서 bean(빈)이라는 것으로 관리됩니다. 이 개념을 이해하고 설명하기 위해 다음 개념들을 학습해야 합니다. 레이어드 아키텍처(Layered Architecture) 수직적으로 계층을 나누는 프로젝트 아키텍처(프로젝트 구조)입니다. 그중 대표적으로 세 계층에 대하여 알아야 합니다. 우리가 기억해야 할 것은 코드...49 reads차근차근 Modern Spring Boot 3 - 기초JPA Repository