package com.anubis.user.action; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import com.anubis.user.service.UserService; /** * @项目名称: page * @类名称: UserAction * @类描述: 用户action * @创建时间: 2014-7-31 下午3:05:23 * @修改备注: * @version: 1.0 */ @Controller @RequestMapping("/user") public class UserAction { private UserService userService; @Autowired public void setUserService(UserService userService) { this.userService = userService; } @RequestMapping(value="/getUserList", produces = "text/html;charset=UTF-8") @ResponseBody public String getUserList(HttpServletRequest request, HttpServletResponse response) { response.setCharacterEncoding("application/json; charset=utf-8"); return userService.getUserList(request); } }
最近下载更多
sspp123 LV1
2020年11月19日
jeep123456 LV10
2020年6月9日
Ditto123 LV8
2020年6月2日
sunshine9920 LV12
2019年7月15日
ftc1314 LV12
2019年2月28日
wang_d LV12
2019年2月22日
tiansitong LV14
2018年12月18日
zhoujunyu LV14
2018年11月7日
wangdongtai LV31
2018年10月23日
sad5421562 LV2
2018年10月17日