Back End 53

Spring Boot 구조

웹 브라우저스프링 부트 애플리케이션 { Controller 클래스: 외부 요청을 분기하여 적절한 서비스 클래스와 연결하여 작업을 처리하고 반환, Service 클래스: 데이터베이스 조작이나 비즈니스 로직을 메서드 기반으로 처리, Member클래스 - MemberRepository: Memeber 클래스로 구현한 클래스를 Repository 인터페이스가 실제 테이블과 매핑(JPA, Hibernate), 실질적인 데이터는 DB에 저장}JPA: 데이터베이스 연결 및 구현lombok: 클래스 메서드 구현 도우미h2: 인메모리 데이터베이스   Spring Boot의 세가지 계층프레젠테이션 계층 - Controller : 외부에서 HTTP 요청을 받아 비즈니스 계층으로 전송비즈니스 계층 - Service : 비즈니..

SpringBoot의 세가지 Annotation(@SpringBootConfiguration, @ComponentScan, @EnableAutoConfiguration)

아래는 SpringBootApplication.java 파일이다. @Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)@Documented@Inherited@SpringBootConfiguration // 스프링 부트 관련 설정@ComponentScan(excludeFilters = {@Filter(type = FilterType.CUSTOM, // 사용자가 등록한 빈을 읽고 등록 classes = TypeExcludeFilter.class), @Filter(type = FilterType.CUSTOM, classes = AutoConfigurationExcludeFilter.class)})@EnableAutoConfiguration..

Spring의 기본개념들 - IoC(Inversion of Control), DI(Dependency Injection), Bean, Spring Container, AOP(Aspect of Programming), PSA(Portable Service Abstraction)

IoC는 Inversion of Control 즉 제어의 역전이라는 뜻이다. 이전까지는 클래스 객체를 사용하기위해서 다른 클래스 내에서 객체를 직접 생성했다. public class A { b = new B(); // class A에서 new로 클래스 B의 객체를 생성} IoC는 객체를 직접 생성하거나 제어하는것이 아닌 외부에서 관리하는 객체를 가져와 사용하는 것이다. 이는 스프링 컨테이너에서 객체를 제공하고 관리하게된다. public class A { private B b; // 코드에서 객체를 생성하지 않고, 외부에서 가져온 객체를 할당한다.}  DI는 Dependency Injection, 의존성 주입이라고하고. 위에서 언급한것처럼 제어의 역전을 구현하기 위해 사용하는 방법이다. 한 클래스가 다른 ..

Back End/Spring 2024.06.24

Querydsl 조회

결과조회 fetch() : 리스트를 조회(데이터 없으면 빈 리스트를 반환한다.) fetchOne() : 하나를 조회(결과가 없으면 null을 가져오고, 둘이상이면 com.querydsl.core.NonUniqueResultException을 터트린다.) fetchFirst() : limit(1).fetchOne() fetchResults() : 페이징 정보를 포함하여 total count 쿼리를 추가적으로 실행한다. fetchCount() : count 쿼리로 변경하여 count의 갯수를 조회한다.

Querydsl dependency 추가방법

build.gradle을 아래와같이 설정해준다. 추가하는 코드중에 s라던지 오타가 있으면 에러가 나온다. (스프링 부트 3버전 기준) plugins { id 'java' id 'org.springframework.boot' version '3.1.10' id 'io.spring.dependency-management' version '1.1.4' //querydsl 추가 // id "com.ewerk.gradle.plugins.querydsl" version "1.0.10" } group = 'study' version = '0.0.1-SNAPSHOT' java { sourceCompatibility = '17' } configurations { compileOnly { extendsFrom annota..