Package com.freewebsys.blog.service

Examples of com.freewebsys.blog.service.PostService


    ApplicationContext applicationContext = WebApplicationContextUtils
        .getWebApplicationContext(request.getSession()
            .getServletContext());
    PostTypeService postTypeService = (PostTypeService) applicationContext
        .getBean("postTypeService");
    PostService postService = (PostService) applicationContext
        .getBean("postService");
    List<Post> postList = null;
    List<PostType> postTypeList = null;
    try {
      postList = postService.findAllPost();
      postTypeList = postTypeService.findAllPostType();
    } catch (Exception e1) {
      // TODO Auto-generated catch block
      e1.printStackTrace();
    }
View Full Code Here

TOP

Related Classes of com.freewebsys.blog.service.PostService

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.