Skip to content

Commit 9202ad1

Browse files
Attribute Lazy Loading
1 parent 7715bf2 commit 9202ad1

File tree

1 file changed

+2
-2
lines changed
  • HibernateSpringBootAttributeLazyLoadingJacksonSerialization

1 file changed

+2
-2
lines changed

HibernateSpringBootAttributeLazyLoadingJacksonSerialization/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
**Run the following requests (via BookstoreController):**\
1414
- lazy fetch the avatar of an author by id: `localhost:8080/author/avatar/{id}`\
15-
- fetch authors by age greater than or equal to the given age without age and avatar: `localhost:8080/authors/{age}`\
16-
- fetch authors by age greater than or equal to the given age with age and avatar (but, don't do this, notice the N+1 issue caused by looping the list of authors and triggering SQLs for fetching age and avatar of each author): `localhost:8080/authors/details/{age}`
15+
- fetch authors by age greater than or equal to the given age without avatar: `localhost:8080/authors/{age}`\
16+
- fetch authors by age greater than or equal to the given age with and avatar (but, don't do this, notice the N+1 issue caused by looping the list of authors and triggering SQLs for fetching the avatar of each author): `localhost:8080/authors/details/{age}`
1717

1818
**Check as well:**\
1919
- [Attribute Lazy Loading (basic)](https://github.com/AnghelLeonard/Hibernate-SpringBoot/blob/master/HibernateSpringBootAttributeLazyLoadingBasic)\

0 commit comments

Comments
 (0)