Examples of listMyAct()


Examples of com.ourlinc.helloworld.model.User.listMyAct()

   */
  @RequestMapping
  String myact(HttpServletRequest request, HttpServletResponse response)
      throws IOException {
    User user = (User) request.getSession().getAttribute("userLogin");
    ResultPage<Activity> rp = user.listMyAct();
    rp.setPageSize(20);
    String p = request.getParameter("p");
    int intp = WebUtils.toInt(p);
    rp.gotoPage(intp);
    request.setAttribute("list", rp);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.