Package com.joedayz.corespringtest.domain

Examples of com.joedayz.corespringtest.domain.Comentario


  @RequestMapping(value = "/comentarios.htm", method = RequestMethod.GET)
  public @ModelAttribute(COMENTARIO) Comentario
      verPost(@RequestParam(value = "idPost", required = false) Long id,
          Model model){
   
    Comentario comentario = new Comentario();
    if(id != null){
     
      List<Comentario> comentarios = comentarioService.listarTodosLosComentariosPorPost(id);
      Post post = postService.obtenerPost(id);
      comentario.setIdPost(post.getId());
     
      model.addAttribute(COMENTARIOS, comentarios);
      model.addAttribute(POST, post);     
    }   
    return comentario;
View Full Code Here

TOP

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

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.