Package com.eniac.blog.dao.domain

Examples of com.eniac.blog.dao.domain.BlogPost


  private SessionFactory factory;

  public void addPost(String post) {
    final Session session = factory.openSession();
    try{
      BlogPost blogPost = new BlogPost();
      blogPost.setEntry(post);
      session.save(blogPost);
      System.out.println();
    } finally {
      session.close();
    }
View Full Code Here


  }

  public void addComment(final int postId, final String comment) {
    final Session session = factory.openSession();
    try{
      final BlogPost post = (BlogPost) session.load(BlogPost.class, postId);
      final BlogPostComment postComment = post.addComment(comment);
      session.save(postComment);
    } finally {
      session.close();
    }
  }
View Full Code Here

TOP

Related Classes of com.eniac.blog.dao.domain.BlogPost

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.