Package com.joedayz.corespringtest.domain

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

Related Classes of com.joedayz.corespringtest.domain.Tema

Copyright © 2018 www.massapicom. 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.