Burninghering's Blog

컨트롤러를 만들다가,

문득 왜 repository를 선언할 때 final을 붙이는 지 이해가 되지 않았다.

스파르타에서는 Service 클래스를 만들 때에도 repository를 선언하는데, <final: 서비스에게 꼭 필요한 녀석임을 명시>라고 주석을 달아놓았다.

꼭 필요한 녀석이었다면 "선언"만으로 해결이 되는 것 아닌가?

 

package com.example.sparta_4.controller;

import com.example.sparta_4.domain.Product;
import com.example.sparta_4.repository.ProductRepository;
import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.List;

@RestController
@RequiredArgsConstructor
public class ProductRestController {

    private final ProductRepository productRepository;

    @GetMapping("/api/products")
    public List<Product> getProduct(){
        return productRepository.findAll();
    }

}

 

[Java] Spring Repository 생성시 final 붙이는 이유

1. 위와 같이 레포지토리 생성 시 final을 붙이는 이유가 무엇일까? MemberRepository 타입의 memberRepository 객체를 다른 객체로 바꾸지 않기 위해 final 키워드를 붙임 2. final은 불변의 객체인 경우 or Read o

itkjspo56.tistory.com


아래의 블로그와 이전 게시글의 블로그들을 참고해서 결론을 내봤는데,

final을 클래스에 선언하면 상속을 할 수 없다.

그럼으로써 만들어지는 repository 클래스의 객체가 또 다른 클래스를 상속받지 못하게 하려는 것일까?


아래 블로그에서

repository가 클래스가 아닌 Interface로 만들어지는 지 설명하고 있다.

 

 

Entity 타입과 PK 타입을 repository 인터페이스에서 제공하기만 한다면,

Spring Data JPA가 기본적인 CRUD 메소드를 만들어 준다.

즉, 규칙(Java Persistence API)에 맞게 사용하기만 한다면 구체적인 구현을 Spring Data JPA가 대신 해주는 것이다.

 

[왜] 스프링부트의 repository는 클래스가 아니라 인터페이스일까?

설명 Spring Data JPA는 구현체 클래스를 제공한다. 즉, 구현 객체를 동적으로 생성해서 주입하게 된다. Entity 타입과 PK 타입을 repository 인터페이스에서 제공하기만 한다면, Spring Data JPA가 기본적인 CR

kkambi.tistory.com

 

JPA가 알아서 구현해주므로

JPA를 구동시키는 repository는 Interface로 선언되어도 되나보다.

하지만 다른 클래스에서 repository가 쓰일 때 final로 선언되는 이유는..?

"불변 객체"로써 변경되지 않게 하기 위함일까?

 

https://mangkyu.tistory.com/131

 

[Java] 불변 객체(Immutable Object) 및 final을 사용해야 하는 이유

클린코드를 읽어도, 이펙티브 자바를 읽어도, 개발을 잘하는 팀의 얘기를 들어도 항상 좋은 코드를 얘기할 때면 불변의 객체를 필연적으로 접하게 되는 것 같습니다. 그래서 이번에는 불변의 객

mangkyu.tistory.com

 

profile

Burninghering's Blog

@개발자 김혜린

안녕하세요! 반갑습니다.