Examples of Tema


Examples of com.joedayz.corespringtest.domain.Tema

  }
 
  @RequestMapping("/posts.htm")
  public void mostrarPosts(@RequestParam("id")Long id, Model model){
    List<Post> posts = postService.listarTodosLosPostPorTema(id);
    Tema tema = temaService.obtenerTema(id);
   
    model.addAttribute(POSTS, posts);
    model.addAttribute(TEMA, tema);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.