广告位联系
返回顶部
分享到

Java毕业设计实战之校园一卡通系统的实现

java 来源:互联网 作者:秩名 发布时间:2022-01-26 18:49:35 人浏览
摘要

一、项目简述(+需求文档+PPT) 功能:卡管理,卡消费,卡充值,图书借阅,消费,记录,注销等等功能。 二、项目运行 环境配置: Jdk1.8 + Tomcat8.5 + mysql + Eclispe(IntelliJ IDEA,Eclispe,My

一、项目简述(+需求文档+PPT)

功能:卡管理,卡消费,卡充值,图书借阅,消费,记录,注销等等功能。

二、项目运行

环境配置:

Jdk1.8 + Tomcat8.5 + mysql + Eclispe(IntelliJ IDEA,Eclispe,MyEclispe,Sts都支持)

项目技术:

JSP + Servlet + html+ css + JavaScript + JQuery + Ajax 等等

用户管理操作控制层:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

/**

 * 用户管理操作

 */

@Controller

@RequestMapping("/user")

public class UserController {

  

    @Autowired

    private UserService userService;

  

    /**

     * 用户添加页面

     * @return

     */

    @GetMapping("/add")

    public String create() {

        return "user/add";

    }

  

    /**

     * 用户添加操作

     * @param user

     * @return

     */

    @PostMapping("/add")

    @ResponseBody

    public Map add(@RequestBody User user) {

        if(StringUtils.isEmpty(user.getUserName())){

            return MapControl.getInstance().error("请填写用户名").getMap();

        }

        if(StringUtils.isEmpty(user.getName())){

            return MapControl.getInstance().error("请填写名称").getMap();

        }

        if(StringUtils.isEmpty(user.getUserPwd())){

            return MapControl.getInstance().error("请填写密码").getMap();

        }

        int result = userService.create(user);

        if (result <= 0) {

            return MapControl.getInstance().error().getMap();

        }

        return MapControl.getInstance().success().getMap();

    }

  

    /**

     * 根据id删除

     * @param id

     * @return

     */

    @PostMapping("/delete/{id}")

    @ResponseBody

    public Map delete(@PathVariable("id") Integer id) {

        int result = userService.delete(id);

        if (result <= 0) {

            return MapControl.getInstance().error().getMap();

        }

        return MapControl.getInstance().success().getMap();

    }

  

    //批量删除

    @PostMapping("/delete")

    @ResponseBody

    public Map delete(String ids) {

        int result = userService.delete(ids);

        if (result <= 0) {

            return MapControl.getInstance().error().getMap();

        }

        return MapControl.getInstance().success().getMap();

    }

  

    /**

     * 编辑用户信息操作

     * @param user

     * @return

     */

    @PostMapping("/edit")

    @ResponseBody

    public Map edit(@RequestBody User user) {

        if(StringUtils.isEmpty(user.getUserName())){

            return MapControl.getInstance().error("请填写用户名").getMap();

        }

        if(StringUtils.isEmpty(user.getName())){

            return MapControl.getInstance().error("请填写名称").getMap();

        }

        if(StringUtils.isEmpty(user.getUserPwd())){

            return MapControl.getInstance().error("请填写密码").getMap();

        }

        int result = userService.update(user);

        if (result <= 0) {

            return MapControl.getInstance().error().getMap();

        }

        return MapControl.getInstance().success().getMap();

    }

  

    /**

     * 根据id查询,跳转修改页面

     * @param id

     * @param modelMap

     * @return

     */

    @GetMapping("/edit/{id}")

    public String edit(@PathVariable("id") Integer id, ModelMap modelMap) {

        User user = userService.detail(id);

        modelMap.addAttribute("user", user);

        return "user/edit";

    }

  

    //查询所有

    @PostMapping("/query")

    @ResponseBody

    public Map query(@RequestBody User user) {

        List list = userService.query(user);

        Integer count = userService.count(user);

        return MapControl.getInstance().success().page(list, count).getMap();

    }

  

    //跳转列表页面

    @GetMapping("/list")

    public String list() {

        return "user/list";

    }

  

}

登录控制层:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

@Controller

public class LoginController {

  

    @Autowired

    private UserService userService;

    @Autowired

    private TeacherService teacherService;

    @Autowired

    private StudentService studentService;

  

    //跳转登录页面

    @GetMapping("/login")

    public String login() {

        return "login";

    }

  

    //登录操作

    @PostMapping("/login")

    @ResponseBody

    public Map login(String userName, String password, String captcha, String type, HttpSession session) {

        //判断用户名、密码、用户类型、验证码是否为空

        if (StringUtils.isEmpty(userName) || StringUtils.isEmpty(password) || StringUtils.isEmpty(captcha) || StringUtils.isEmpty(type)) {

            return MapControl.getInstance().error("用户名或密码不能为空").getMap();

        }

        //获取系统生成的验证码

        String _captcha = (String) session.getAttribute("captcha");

        //先判断验证码是否正确

        if (!(captcha.toLowerCase()).equals(_captcha.toLowerCase())) {

            //验证码错误

            return MapControl.getInstance().error("验证码错误").getMap();

        }

  

        //判断用户类型

        if ("1".equals(type)) { //管理员验证登录

            User user = userService.login(userName, MD5Utils.getMD5(password)); //对密码进行加密处理,因为数据库中存储的是加密后的密码

            if (user != null) {

                session.setAttribute("user", user);

                session.setAttribute("type", 1);

                return MapControl.getInstance().success().add("data", user).getMap();

            } else {

                return MapControl.getInstance().error("用户名或密码错误").getMap();

            }

        }

        if ("2".equals(type)) { //老师验证登录

            Teacher teacher = teacherService.login(userName, MD5Utils.getMD5(password));

            if (teacher != null) {

                session.setAttribute("user", teacher);

                session.setAttribute("type", "2");

                return MapControl.getInstance().success().add("data", teacher).getMap();

            } else {

                return MapControl.getInstance().error("用户名或密码错误").getMap();

            }

        }

        if ("3".equals(type)) { //学生验证登录

            Student student = studentService.login(userName, MD5Utils.getMD5(password));

            if (student != null) {

                session.setAttribute("user", student);

                session.setAttribute("type", "3");

                return MapControl.getInstance().success().add("data", student).getMap();

            } else {

                return MapControl.getInstance().error("用户名或密码错误").getMap();

            }

        }

        return MapControl.getInstance().getMap();

    }

  

}

生成验证码:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

@Controller

@RequestMapping("/captcha")

public class CaptchaController {

  

    private char[] codeSequence = {'A', '1', 'B', 'C', '2', 'D', '3', 'E', '4', 'F', '5', 'G', '6', 'H', '7', 'I', '8', 'J',

            'K', '9', 'L', '1', 'M', '2', 'N', 'P', '3', 'Q', '4', 'R', 'S', 'T', 'U', 'V', 'W',

            'X', 'Y', 'Z'};

  

    @RequestMapping("/code")

    public void getCode(HttpServletResponse response, HttpSession session) throws IOException {

        int width = 80;

        int height = 37;

        Random random = new Random();

        //设置response头信息

        //禁止缓存

        response.setHeader("Pragma", "No-cache");

        response.setHeader("Cache-Control", "no-cache");

        response.setDateHeader("Expires", 0);

  

        //生成缓冲区image类

        BufferedImage image = new BufferedImage(width, height, 1);

        //产生image类的Graphics用于绘制操作

        Graphics g = image.getGraphics();

        //Graphics类的样式

        g.setColor(this.getColor(200, 250));

        g.setFont(new Font("Times New Roman", 0, 28));

        g.fillRect(0, 0, width, height);

        //绘制干扰线

        for (int i = 0; i < 40; i++) {

            g.setColor(this.getColor(130, 200));

            int x = random.nextInt(width);

            int y = random.nextInt(height);

            int x1 = random.nextInt(12);

            int y1 = random.nextInt(12);

            g.drawLine(x, y, x + x1, y + y1);

        }

  

        //绘制字符

        String strCode = "";

        for (int i = 0; i < 4; i++) {

            String rand = String.valueOf(codeSequence[random.nextInt(codeSequence.length)]);

            strCode = strCode + rand;

            g.setColor(new Color(20 + random.nextInt(110), 20 + random.nextInt(110), 20 + random.nextInt(110)));

            g.drawString(rand, 13 * i + 6, 28);

        }

        //将字符保存到session中用于前端的验证

        session.setAttribute("captcha", strCode.toLowerCase());

        g.dispose();

  

        ImageIO.write(image, "JPEG", response.getOutputStream());

        response.getOutputStream().flush();

    }

  

    public Color getColor(int fc, int bc) {

        Random random = new Random();

        if (fc > 255)

            fc = 255;

        if (bc > 255)

            bc = 255;

        int r = fc + random.nextInt(bc - fc);

        int g = fc + random.nextInt(bc - fc);

        int b = fc + random.nextInt(bc - fc);

        return new Color(r, g, b);

    }

  

}


版权声明 : 本文内容来源于互联网或用户自行发布贡献,该文观点仅代表原作者本人。本站仅提供信息存储空间服务和不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权, 违法违规的内容, 请发送邮件至2530232025#qq.cn(#换@)举报,一经查实,本站将立刻删除。
原文链接 : https://blog.csdn.net/pastclouds/article/details/121883590
相关文章
  • SpringBoot自定义错误处理逻辑介绍

    SpringBoot自定义错误处理逻辑介绍
    1. 自定义错误页面 将自定义错误页面放在 templates 的 error 文件夹下,SpringBoot 精确匹配错误信息,使用 4xx.html 或者 5xx.html 页面可以打印错误
  • Java实现手写一个线程池的代码

    Java实现手写一个线程池的代码
    线程池技术想必大家都不陌生把,相信在平时的工作中没有少用,而且这也是面试频率非常高的一个知识点,那么大家知道它的实现原理和
  • Java实现断点续传功能的代码

    Java实现断点续传功能的代码
    题目实现:网络资源的断点续传功能。 二、解题思路 获取要下载的资源网址 显示网络资源的大小 上次读取到的字节位置以及未读取的字节
  • 你可知HashMap为什么是线程不安全的
    HashMap 的线程不安全 HashMap 的线程不安全主要体现在下面两个方面 在 jdk 1.7 中,当并发执行扩容操作时会造成环形链和数据丢失的情况 在
  • ArrayList的动态扩容机制的介绍

    ArrayList的动态扩容机制的介绍
    对于 ArrayList 的动态扩容机制想必大家都听说过,之前的文章中也谈到过,不过由于时间久远,早已忘却。 所以利用这篇文章做做笔记,加
  • JVM基础之字节码的增强技术介绍

    JVM基础之字节码的增强技术介绍
    字节码增强技术 在上文中,着重介绍了字节码的结构,这为我们了解字节码增强技术的实现打下了基础。字节码增强技术就是一类对现有字
  • Java中的字节码增强技术

    Java中的字节码增强技术
    1.字节码增强技术 字节码增强技术就是一类对现有字节码进行修改或者动态生成全新字节码文件的技术。 参考地址 2.常见技术 技术分类 类
  • Redis BloomFilter布隆过滤器原理与实现

    Redis BloomFilter布隆过滤器原理与实现
    Bloom Filter 概念 布隆过滤器(英语:Bloom Filter)是1970年由一个叫布隆的小伙子提出的。它实际上是一个很长的二进制向量和一系列随机映射
  • Java C++算法题解leetcode801使序列递增的最小交换次

    Java C++算法题解leetcode801使序列递增的最小交换次
    题目要求 思路:状态机DP 实现一:状态机 Java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 class Solution { public int minSwap(int[] nums1, int[] nums2) { int n
  • Mybatis结果集映射与生命周期介绍

    Mybatis结果集映射与生命周期介绍
    一、ResultMap结果集映射 1、设计思想 对简单的语句做到零配置,对于复杂一点的语句,只需要描述语句之间的关系就行了 2、resultMap的应用场
  • 本站所有内容来源于互联网或用户自行发布,本站仅提供信息存储空间服务,不拥有版权,不承担法律责任。如有侵犯您的权益,请您联系站长处理!
  • Copyright © 2017-2022 F11.CN All Rights Reserved. F11站长开发者网 版权所有 | 苏ICP备2022031554号-1 | 51LA统计