spring-boot-starter-web 依赖项不包含 JPA(Java Persistence API)功能。它是一个单独的依赖项,需要显式添加。
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> <version>${spring.boot.version}</version> </dependency>