'org.springframework.boot:spring-boot-starter-data-jpa' 使用providedRuntime 还是 implementation
时间: 2024-06-10 19:10:26 浏览: 204
spring boot 集成JPA
如果您的项目是一个 web 项目,我们建议您使用 implementation,因为您需要在运行时访问 JPA 功能。如果您的项目是一个库项目,您可能需要使用 providedRuntime,因为库用户可以使用自己的 JPA 实现。但是,根据您的具体情况,请根据需要选择 implementation 或 providedRuntime。
阅读全文