我想使用Cacheable(sync=true)来控制访问方法的并发行为 @Service @CacheConfig(cacheNames = "book") public class BookService { @Cacheable(key = "#isbn",sync = true) public Book book(String isbn,int id) { System.out.println("wait 3s..."); try { Thread.sleep(3000); } catch (...