Package com.joedayz.corespringtest.domain

Examples of com.joedayz.corespringtest.domain.Post


   
    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


      BindingResult result, Model model){
   
    if(result.hasErrors()){
     
      List<Comentario> comentarios = comentarioService.listarTodosLosComentariosPorPost(comentario.getIdPost());
      Post post = postService.obtenerPost(comentario.getIdPost());
     
      model.addAttribute(COMENTARIOS, comentarios);
      model.addAttribute(POST, post);     
     
      return "comentarios";
View Full Code Here

TOP

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

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.