ToB企服应用市场:ToB评测及商务社交产业平台

标题: springboot/ssm大学校园生存信息平台Java校园活动论坛交流问卷系统web源码 [打印本页]

作者: 不到断气不罢休    时间: 2024-12-3 14:05
标题: springboot/ssm大学校园生存信息平台Java校园活动论坛交流问卷系统web源码
springboot/ssm大学校园生存信息平台Java校园活动论坛交流问卷系统web源码
  基于springboot(可改ssm)+html+vue项目

开辟语言:Java
框架:springboot/可改ssm + vue
JDK版本:JDK1.8(或11)
服务器:tomcat
数据库:mysql 5.7(或8.0)
数据库工具:Navicat/sqlyog
开辟软件:eclipse/idea
依赖管理包:Maven

代码+数据库包管完备可用,可提供远程调试并引导运行服务~

可提供付费解说以及修改服务,好比题目、界面、功能、框架等等...

千套代码,接待带题目咨询哦~
  1. package com.controller;
  2. import java.util.Arrays;
  3. import java.util.Calendar;
  4. import java.util.Date;
  5. import java.util.Map;
  6. import javax.servlet.http.HttpServletRequest;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.stereotype.Controller;
  9. import org.springframework.web.bind.annotation.GetMapping;
  10. import org.springframework.web.bind.annotation.PathVariable;
  11. import org.springframework.web.bind.annotation.PostMapping;
  12. import org.springframework.web.bind.annotation.RequestBody;
  13. import org.springframework.web.bind.annotation.RequestMapping;
  14. import org.springframework.web.bind.annotation.RequestParam;
  15. import org.springframework.web.bind.annotation.ResponseBody;
  16. import org.springframework.web.bind.annotation.RestController;
  17. import com.annotation.IgnoreAuth;
  18. import com.baomidou.mybatisplus.mapper.EntityWrapper;
  19. import com.entity.TokenEntity;
  20. import com.entity.UserEntity;
  21. import com.service.TokenService;
  22. import com.service.UserService;
  23. import com.utils.CommonUtil;
  24. import com.utils.MPUtil;
  25. import com.utils.PageUtils;
  26. import com.utils.R;
  27. import com.utils.ValidatorUtils;
  28. /**
  29. * 登录相关
  30. */
  31. @RequestMapping("users")
  32. @RestController
  33. public class UserController{
  34.        
  35.         @Autowired
  36.         private UserService userService;
  37.        
  38.         @Autowired
  39.         private TokenService tokenService;
  40.         /**
  41.          * 登录
  42.          */
  43.         @IgnoreAuth
  44.         @PostMapping(value = "/login")
  45.         public R login(String username, String password, String captcha, HttpServletRequest request) {
  46.                 UserEntity user = userService.selectOne(new EntityWrapper<UserEntity>().eq("username", username));
  47.                 if(user==null || !user.getPassword().equals(password)) {
  48.                         return R.error("账号或密码不正确");
  49.                 }
  50.                 String token = tokenService.generateToken(user.getId(),username, "users", user.getRole());
  51.                 return R.ok().put("token", token);
  52.         }
  53.        
  54.         /**
  55.          * 注册
  56.          */
  57.         @IgnoreAuth
  58.         @PostMapping(value = "/register")
  59.         public R register(@RequestBody UserEntity user){
  60. //            ValidatorUtils.validateEntity(user);
  61.             if(userService.selectOne(new EntityWrapper<UserEntity>().eq("username", user.getUsername())) !=null) {
  62.                     return R.error("用户已存在");
  63.             }
  64.         userService.insert(user);
  65.         return R.ok();
  66.     }
  67.         /**
  68.          * 退出
  69.          */
  70.         @GetMapping(value = "logout")
  71.         public R logout(HttpServletRequest request) {
  72.                 request.getSession().invalidate();
  73.                 return R.ok("退出成功");
  74.         }
  75.        
  76.         /**
  77.      * 密码重置
  78.      */
  79.     @IgnoreAuth
  80.         @RequestMapping(value = "/resetPass")
  81.     public R resetPass(String username, HttpServletRequest request){
  82.             UserEntity user = userService.selectOne(new EntityWrapper<UserEntity>().eq("username", username));
  83.             if(user==null) {
  84.                     return R.error("账号不存在");
  85.             }
  86.             user.setPassword("123456");
  87.         userService.update(user,null);
  88.         return R.ok("密码已重置为:123456");
  89.     }
  90.        
  91.         /**
  92.      * 列表
  93.      */
  94.     @RequestMapping("/page")
  95.     public R page(@RequestParam Map<String, Object> params,UserEntity user){
  96.         EntityWrapper<UserEntity> ew = new EntityWrapper<UserEntity>();
  97.             PageUtils page = userService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.allLike(ew, user), params), params));
  98.         return R.ok().put("data", page);
  99.     }
  100.         /**
  101.      * 列表
  102.      */
  103.     @RequestMapping("/list")
  104.     public R list( UserEntity user){
  105.                EntityWrapper<UserEntity> ew = new EntityWrapper<UserEntity>();
  106.               ew.allEq(MPUtil.allEQMapPre( user, "user"));
  107.         return R.ok().put("data", userService.selectListView(ew));
  108.     }
  109.     /**
  110.      * 信息
  111.      */
  112.     @RequestMapping("/info/{id}")
  113.     public R info(@PathVariable("id") String id){
  114.         UserEntity user = userService.selectById(id);
  115.         return R.ok().put("data", user);
  116.     }
  117.    
  118.     /**
  119.      * 获取用户的session用户信息
  120.      */
  121.     @RequestMapping("/session")
  122.     public R getCurrUser(HttpServletRequest request){
  123.             Long id = (Long)request.getSession().getAttribute("userId");
  124.         UserEntity user = userService.selectById(id);
  125.         return R.ok().put("data", user);
  126.     }
  127.     /**
  128.      * 保存
  129.      */
  130.     @PostMapping("/save")
  131.     public R save(@RequestBody UserEntity user){
  132. //            ValidatorUtils.validateEntity(user);
  133.             if(userService.selectOne(new EntityWrapper<UserEntity>().eq("username", user.getUsername())) !=null) {
  134.                     return R.error("用户已存在");
  135.             }
  136.         userService.insert(user);
  137.         return R.ok();
  138.     }
  139.     /**
  140.      * 修改
  141.      */
  142.     @RequestMapping("/update")
  143.     public R update(@RequestBody UserEntity user){
  144. //        ValidatorUtils.validateEntity(user);
  145.             UserEntity u = userService.selectOne(new EntityWrapper<UserEntity>().eq("username", user.getUsername()));
  146.             if(u!=null && u.getId()!=user.getId() && u.getUsername().equals(user.getUsername())) {
  147.                     return R.error("用户名已存在。");
  148.             }
  149.         userService.updateById(user);//全部更新
  150.         return R.ok();
  151.     }
  152.     /**
  153.      * 删除
  154.      */
  155.     @RequestMapping("/delete")
  156.     public R delete(@RequestBody Long[] ids){
  157.         userService.deleteBatchIds(Arrays.asList(ids));
  158.         return R.ok();
  159.     }
  160. }
复制代码


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。




欢迎光临 ToB企服应用市场:ToB评测及商务社交产业平台 (https://dis.qidao123.com/) Powered by Discuz! X3.4