Closed josefortyfive closed 3 months ago
Issue has been resolved.
Main issue is in Book.java
The bookId
was declared as Integer
.
But, the getter setter is int
.
Changed from
public int getBookId() {
return this.bookId;
}
public void setBookId(int bookId) {
this.bookId = bookId;
}
To
public Integer getBookId() {
return this.bookId;
}
public void setBookId(Integer bookId) {
this.bookId = bookId;
}
Issue with BookStoreWebsite2
Environment stopped working after a long break. Return with an error below.
Performed the following troubleshooting
Key note of the possible issue
Was using
eclipse 2022
then upgrade toeclipse 2024
. But, after I upgraded the IDE I was still able to run the Project.