Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/main/java/core/IndexerMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,4 @@ public static void main(String[] args) {
}
}
}

19 changes: 19 additions & 0 deletions src/main/resources/data/book.json
Original file line number Diff line number Diff line change
Expand Up @@ -3302,6 +3302,25 @@
"rating": "4.8",
"coverUrl": "https://i.ibb.co/LhxPjncB/205.jpg",
"downLink": "https://kvongcmehsanalibrary.wordpress.com/wp-content/uploads/2021/07/harrypotter.pdf"
},
{
"bookId": 207,
"title": "Probability & Statistics for Engineers and Scientists (Ninth Edition)",
"author": "Ronald E. Walpole, Raymond H. Myers, Sharon L. Myers, Keying Ye",
"description": "A comprehensive textbook covering probability theory and statistical methods with applications in engineering and the sciences. Widely used for undergraduate engineering and science courses.",
"progLang": "English",
"category": "Mathematics",
"tag": [
"Probability",
"Statistics",
"Engineering",
"Science",
"Mathematics",
"Textbook"
],
"rating": "4.6",
Copy link

Copilot AI Jan 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The rating field should be a numeric value, not a string. The Book domain class defines rating as a float type. Change "4.6" to 4.6 (without quotes) to match the data type used in all other book entries and to ensure proper deserialization.

Copilot uses AI. Check for mistakes.
"coverUrl": "https://m.media-amazon.com/images/S/compressed.photo.goodreads.com/books/1348971620i/9637420.jpg",
"downLink": "https://dl.icdst.org/pdfs/files4/f5087fa30778ccd742790526c0d6be83.pdf"
}

]
Loading