Values not displayed in jsp
问题 I am new to spring framework and using jstl. I have a problem in displaying my data on jsp file. Here is my code Controller @RequestMapping(method = RequestMethod.GET, value = "/test") public ModelAndView getTest(HttpServletRequest request) { List<Place> places = PlacesService.search(types, 48.137048, 11.57538599, 10000); for(Place place:places){ System.out.println("Name: " + place.getName()); System.out.println("Rating: " + place.getRating()); System.out.println("Categories: " + place