작성한 질문수
[개정판 2023-11-27] Spring Boot 3.x 를 이용한 RESTful Web Services 개발
JPA 사용을 위한 Dependency 추가와 Entity 설정
작성
·
159
0
답변 1
1
안녕하세요, 이도원입니다,
메이븐 설정에서 Dependency에 대한 scope 설정은 compile입니다. 위와 같이 runtime으로 설정하게 되면, 의존관계가 컴파일시 필요하지 않지만, 실행 할 때 필요함을 의미합니다. 따라서 설정에 대해서는 필수라기 보다는 적절하게 선택해서 작성하시면 좋을 것 같습니다.
https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Dependency_Scope
감사합니다.