Beispiel #1
0
 @RequestMapping("/")
 public String index(final Map<String, Object> map) {
   final Response<Meme> response = service.listRecentFirst();
   map.put("response", response);
   return index;
 }