环境准备 三个table:书籍信息book、作者信息author、出版社信息publish。 create database temp;use temp;create table book (id int not null auto_increment, name varchar(20) not null, author int not null, pub int not null, pr
spring data jpa 文档的官方网站: https://docs.spring.io/spring-data/jpa/docs/current/reference/html/ 在开发中使用到 Jpa Dao 方法时,出现如下错误: fetch join... but the owner of the fetched association was not present