作者主页:源码空间站2022
简介:Java领域优质创作者、Java项目、学习资料、技术互助
文末获取源码
项目介绍
本项目分为超级管理员、管理员、学生三种角色,
超级管理员角色包含以下功能:
通知管理、用户管理、实验室管理、实验室预约记录、设备管理、设备借用管理、设备维修管理等功能。
管理员角色包含以下功能:
通知管理、用户管理、实验室管理、实验室预约记录、实验室预约、设备管理、设备借用管理、设备维修管理等功能。
普通学生角色包含以下功能:
通知管理、用户管理、实验室管理、设备借用管理等功能。
环境需要
1.运行环境:最好是java jdk 1.8,我们在这个平台上运行的。其他版本理论上也可以。
2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA;
3.tomcat环境:Tomcat 7.x,8.x,9.x版本均可
4.硬件环境:windows 7/8/10 1G内存以上;或者 Mac OS;
5.数据库:MySql 8.0版本;
6.是否Maven项目:是;
技术栈
1. 后端:Spring+SpringMVC+Mybatis
2. 前端:freemarker+bootstrap
使用说明
1. 使用Navicat或者其它工具,在mysql中创建对应名称的数据库,并导入项目的sql文件;
2. 使用IDEA/Eclipse/MyEclipse导入项目,Eclipse/MyEclipse导入时,若为maven项目请选择maven;
若为maven项目,导入成功后请执行maven clean;maven install命令,然后运行;
3. 将项目中config.properties配置文件中的数据库配置改为自己的配置;
4. 运行项目,输入localhost:8080/ 登录
运行截图
相关代码
用户登录控制器
package com.qtummatrix.controller;
import com.qtummatrix.entity.User;
import com.qtummatrix.service.UserLoginService;
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 org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* create by Gongshiyong 2020-01-20 9:54
*/
@Controller
@RequestMapping("login")
public class UserLoginController {
private Map<String, Object> map = new HashMap<>();
@Autowired
private UserLoginService userLoginService;
@RequestMapping("login")
public ModelAndView toLoginPage() {
ModelAndView modelAndView = new ModelAndView();
modelAndView.setViewName("login");
return modelAndView;
}
/**
* 验证账号和密码是否正确
*
* @param userAccount
* @param userPassword
* @return
*/
@ResponseBody
@RequestMapping("verify")
public Map<String, Object> verify(String userAccount, String userPassword, HttpServletRequest request) {
List<User> userList = userLoginService.validateLogin(userAccount, userPassword);
if (userList.size() == 0) {
map.put("resultCode", "201");
map.put("resultMessage", "手机号或密码错误!");
} else {
if (userList.get(0).getIscheck() == 0) {
map.put("resultCode", "202");
map.put("resultMessage", "账号未通过审核,请联系管理员审核!");
} else {
map.put("resultCode", "200");
map.put("data", userList.get(0));
map.put("resultMessage", "登录成功!");
HttpSession session = request.getSession();
session.setAttribute("LOGIN_USER", userList.get(0));
}
}
return map;
}
/**
* 登录成功跳转到主页
*
* @return
*/
@RequestMapping("main")
public ModelAndView toMain() {
ModelAndView modelAndView = new ModelAndView();
modelAndView.setViewName("main");
return modelAndView;
}
}
如果也想学习本系统,下面领取。关注并回复:177ssm