Restaurant responseRestaurant = restaurant_repository.findById(1L);
List<Queue> responseQueueList = queue_repository.findByRestaurantId(responseRestaurant);
I have this code which returns the response in the form of a list , i want to check the value stored in "responseQueueList"
If the program is paused after the line that initializes responseQueueList, you can just mouse-over the word responseQueueList to see its value and the fields of the object it refers to (and its fields, and the objects they refer to, and their fields, etc...).
Eclipse won't show you the contents of the collection directly, but it will show you the fields, which you can look through (for example, ArrayLists store their contents in an array referenced by the field elementData).
If this is too inconvenient, you could also try adding responseQueueList.toString() in the Expressions view (either Window -> Show View -> Expressions or Window -> Show View -> Other... -> Debug -> Expressions)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With