|
|
@@ -1,213 +0,0 @@
|
|
|
-package com.zheng.cms.controller;
|
|
|
-
|
|
|
-import com.zheng.cms.dao.model.User;
|
|
|
-import com.zheng.cms.dao.model.UserExample;
|
|
|
-import com.zheng.cms.service.UserService;
|
|
|
-import com.zheng.common.util.Paginator;
|
|
|
-import org.slf4j.Logger;
|
|
|
-import org.slf4j.LoggerFactory;
|
|
|
-import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.stereotype.Controller;
|
|
|
-import org.springframework.ui.Model;
|
|
|
-import org.springframework.validation.BindingResult;
|
|
|
-import org.springframework.validation.ObjectError;
|
|
|
-import org.springframework.web.bind.annotation.*;
|
|
|
-import org.springframework.web.multipart.MultipartFile;
|
|
|
-
|
|
|
-import javax.servlet.http.HttpServletRequest;
|
|
|
-import javax.validation.Valid;
|
|
|
-import java.io.File;
|
|
|
-import java.io.IOException;
|
|
|
-import java.util.HashMap;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
-
|
|
|
-/**
|
|
|
- * 用户控制器
|
|
|
- * @author shuzheng
|
|
|
- * @date 2016年7月6日 下午6:16:25
|
|
|
- */
|
|
|
-@Controller
|
|
|
-@RequestMapping("/user")
|
|
|
-public class UserController extends BaseController {
|
|
|
-
|
|
|
- private static Logger _log = LoggerFactory.getLogger(UserController.class);
|
|
|
-
|
|
|
- @Autowired
|
|
|
- private UserService userService;
|
|
|
-
|
|
|
- @ExceptionHandler(Exception.class)
|
|
|
- public void exceptionHandler(Exception e) {
|
|
|
- e.printStackTrace();
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 首页
|
|
|
- * @return
|
|
|
- */
|
|
|
- @RequestMapping(value = {"", "index"})
|
|
|
- public String index() {
|
|
|
- return "redirect:/user/list";
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 列表
|
|
|
- * @param page
|
|
|
- * @param rows
|
|
|
- * @param request
|
|
|
- * @return
|
|
|
- */
|
|
|
- @RequestMapping("/list")
|
|
|
- public String list(
|
|
|
- @RequestParam(required = false, defaultValue = "1", value = "page") int page,
|
|
|
- @RequestParam(required = false, defaultValue = "20", value = "rows") int rows,
|
|
|
- HttpServletRequest request, Model model) {
|
|
|
-
|
|
|
- UserExample userExample = new UserExample();
|
|
|
- userExample.createCriteria()
|
|
|
- .andUserIdGreaterThan(0);
|
|
|
- userExample.setOffset((page -1) * rows);
|
|
|
- userExample.setLimit(rows);
|
|
|
- userExample.setDistinct(false);
|
|
|
- userExample.setOrderByClause(" user_id asc ");
|
|
|
- List<User> users = userService.getMapper().selectByExample(userExample);
|
|
|
- model.addAttribute("users", users);
|
|
|
-
|
|
|
- // 创建分页对象
|
|
|
- long total = userService.getMapper().countByExample(userExample);
|
|
|
- Paginator paginator = new Paginator();
|
|
|
- paginator.setTotal(total);
|
|
|
- paginator.setPage(page);
|
|
|
- paginator.setRows(rows);
|
|
|
- paginator.setParam("page");
|
|
|
- paginator.setUrl(request.getRequestURI());
|
|
|
- paginator.setQuery(request.getQueryString());
|
|
|
- model.addAttribute("paginator", paginator);
|
|
|
-
|
|
|
- return "/user/list";
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 新增get
|
|
|
- * @return
|
|
|
- */
|
|
|
- @RequestMapping(value = "/add", method = RequestMethod.GET)
|
|
|
- public String add() {
|
|
|
- return "/user/add";
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 新增post
|
|
|
- * @param user
|
|
|
- * @param binding
|
|
|
- * @return
|
|
|
- */
|
|
|
- @RequestMapping(value = "/add", method = RequestMethod.POST)
|
|
|
- public String add(@Valid User user, BindingResult binding) {
|
|
|
- if (binding.hasErrors()) {
|
|
|
- for (ObjectError error : binding.getAllErrors()) {
|
|
|
- _log.error(error.getDefaultMessage());
|
|
|
- }
|
|
|
- return "/user/add";
|
|
|
- }
|
|
|
- user.setCtime(System.currentTimeMillis());
|
|
|
-
|
|
|
- userService.getMapper().insertSelective(user);
|
|
|
-
|
|
|
- _log.info("新增记录id为:{}", user.getUserId());
|
|
|
-
|
|
|
- return "redirect:/user/list";
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 删除
|
|
|
- * @param id
|
|
|
- * @return
|
|
|
- */
|
|
|
- @RequestMapping(value = "/delete/{id}",method = RequestMethod.GET)
|
|
|
- public String delete(@PathVariable("id") int id) {
|
|
|
- userService.getMapper().deleteByPrimaryKey(id);
|
|
|
- return "redirect:/user/list";
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 修改get
|
|
|
- * @param id
|
|
|
- * @param model
|
|
|
- * @return
|
|
|
- */
|
|
|
- @RequestMapping(value = "/update/{id}", method = RequestMethod.GET)
|
|
|
- public String update(@PathVariable("id") int id, Model model) {
|
|
|
- model.addAttribute("user", userService.getMapper().selectByPrimaryKey(id));
|
|
|
- return "/user/update";
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 修改post
|
|
|
- * @param id
|
|
|
- * @param user
|
|
|
- * @param binding
|
|
|
- * @param model
|
|
|
- * @return
|
|
|
- */
|
|
|
- @RequestMapping(value = "/update/{id}", method = RequestMethod.POST)
|
|
|
- public String update(@PathVariable("id") int id, @Valid User user, BindingResult binding, Model model) {
|
|
|
- if (binding.hasErrors()) {
|
|
|
- model.addAttribute("errors", binding.getAllErrors());
|
|
|
- return "user/update/" + id;
|
|
|
- }
|
|
|
- userService.getMapper().updateByPrimaryKeySelective(user);
|
|
|
- return "redirect:/user/list";
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 上传文件
|
|
|
- * @param file
|
|
|
- * @param request
|
|
|
- * @return
|
|
|
- * @throws IOException
|
|
|
- */
|
|
|
- @ResponseBody
|
|
|
- @RequestMapping(value = "/upload", method = RequestMethod.POST)
|
|
|
- public Object upload(@RequestParam(value = "file", required = false) MultipartFile file, HttpServletRequest request) throws IOException {
|
|
|
- // 返回结果
|
|
|
- Map<String, Object> map = new HashMap<String, Object>();
|
|
|
- // 判断上传文件类型
|
|
|
- String contentType = file.getContentType().toLowerCase();
|
|
|
- if ((!contentType.equals("image/jpeg")) &&
|
|
|
- (!contentType.equals("image/pjpeg")) &&
|
|
|
- (!contentType.equals("image/png")) &&
|
|
|
- (!contentType.equals("image/x-png")) &&
|
|
|
- (!contentType.equals("image/bmp")) &&
|
|
|
- (!contentType.equals("image/gif"))) {
|
|
|
- map.put(RESULT, FAILED);
|
|
|
- map.put(DATA, "不支持该类型的文件!");
|
|
|
- return map;
|
|
|
- }
|
|
|
- // 创建图片目录
|
|
|
- String basePath = request.getSession().getServletContext().getRealPath("/attached");
|
|
|
- String fileName = file.getOriginalFilename();
|
|
|
- String savePath = basePath + "/images/";
|
|
|
- File targetFile = new File(savePath, fileName);
|
|
|
- if (!targetFile.exists()) {
|
|
|
- targetFile.mkdirs();
|
|
|
- }
|
|
|
- // 保存图片
|
|
|
- file.transferTo(targetFile);
|
|
|
- map.put(RESULT, SUCCESS);
|
|
|
- map.put(DATA, targetFile.getAbsoluteFile());
|
|
|
- return map;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * ajax
|
|
|
- * @param id
|
|
|
- * @return
|
|
|
- */
|
|
|
- @ResponseBody
|
|
|
- @RequestMapping(value = "/ajax/{id}", method = RequestMethod.GET)
|
|
|
- public Object ajax(@PathVariable int id) {
|
|
|
- return userService.getMapper().selectByPrimaryKey(id);
|
|
|
- }
|
|
|
-
|
|
|
-}
|