It is a quite strange requrements, you have only one object Book with only one Author? For example, in Spring it just:
@Entity
public class Book
private String author;
...
}
@RestController
public class BookController
@GetMapping("/books")
public List<Book> getBooks() {
...
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…