首页>代码>Spring+Spring MVC+Mybatis+Maven+MySql+bootstrap框架搭建与分页查询实例>/ssm_project-master/ssm_project/src/main/java/com/lin/controller/UserController.java
package com.lin.controller;


import java.util.HashMap;
import java.util.Map;

import javax.annotation.Resource;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.data.domain.Pageable;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;

import com.github.pagehelper.Page;
import com.lin.domain.User;
import com.lin.service.UserService;
import com.lin.util.PagedResult;

/**
 * 功能概要:UserController
 * 
 * @author linbingwen
 * @since  2015年9月28日 
 */
@Controller
public class UserController extends BaseController {
	
	private Logger logger = LoggerFactory.getLogger(getClass());
	
	@Resource
	private UserService userService;
	
	@RequestMapping("/")  
    public ModelAndView getIndex(){    
		ModelAndView mav = new ModelAndView("index"); 
		User user = userService.selectUserById(1);
	    mav.addObject("user", user); 
        return mav;  
    }  
	
	/**
	 * 显示首页
	 * @author linbingwen
	 * @since  2015年10月23日 
	 * @return
	 */
	@RequestMapping("/bootstrapTest1")  
	public String bootStrapTest1(){
		return "bootstrap/bootstrapTest1";
	}
	
    /**
     * 分页查询用户信息
     * @author linbingwen
     * @since  2015年10月23日 
     * @param page
     * @return
     */
    @RequestMapping(value="/list.do", method= RequestMethod.POST)
    @ResponseBody
    public String list(Integer pageNumber,Integer pageSize ,String userName) {
		logger.info("分页查询用户信息列表请求入参:pageNumber{},pageSize{}", pageNumber,pageSize);
		try {
			PagedResult<User> pageResult = userService.queryByPage(userName, pageNumber,pageSize);
    	    return responseSuccess(pageResult);
    	} catch (Exception e) {
			return responseFail(e.getMessage());
		}
    }
}
最近下载更多
543666826  LV33 2021年11月18日
huaua7676  LV30 2021年10月9日
Altria  LV5 2021年8月13日
lianghui  LV13 2021年7月7日
long2021  LV1 2021年6月25日
..  LV8 2021年6月23日
米卡是我的king  LV5 2021年4月8日
luckyting  LV3 2021年3月30日
hjh844615  LV6 2020年9月29日
053101059747  LV2 2020年7月15日
最近浏览更多
wanderingsoul  LV2 6月15日
xin xie  LV1 6月13日
加油干阳神  LV9 5月21日
沈从文  LV3 2023年12月31日
微信网友_6802139027345408  LV2 2023年12月31日
taoshen95  LV15 2023年12月25日
yolo_light  LV1 2023年12月21日
wanglinddad  LV55 2023年12月19日
WBelong  LV8 2023年12月11日
uni-code_0123  LV1 2023年11月29日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友