Java实战之课程信息管理系统的实现


Posted in Java/Android onApril 01, 2022

一、项目运行

环境配置:

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

项目技术:

Springboot + SpringMVC + MyBatis + FreeMarker + JavaScript + JQuery + Ajax + maven等等。

二、效果图展示

Java实战之课程信息管理系统的实现

Java实战之课程信息管理系统的实现

Java实战之课程信息管理系统的实现

Java实战之课程信息管理系统的实现

Java实战之课程信息管理系统的实现

Java实战之课程信息管理系统的实现

Java实战之课程信息管理系统的实现

三、核心代码

用户管理控制层

@Controller
@RequestMapping("/User")
public class UserController {
 
	@Autowired
	private UserService userService;
 
	@Autowired
	private PowerService powerService;
 
	@Autowired
	private RoleService roleService;
 
	@Autowired
	private NoticeService noticeService;
 
	@RequestMapping("/Main")
	public String res(HttpServletRequest request){
		String time = DateUtil.getStringToday();
		request.getSession().setAttribute("time", time);
 
		Notice notice = new Notice();
 
		List<Notice> list = noticeService.queryAll(notice);
 
		notice = list.get(0);
 
		User user = userService.selectByPrimaryKey(notice.getUserid());
 
		notice.setUserid(user.getName());
		request.getSession().setAttribute("notice", notice);
 
		return "Main";
	}
 
	@RequestMapping("/changePa")
	public String res1(){
		return "changePass";
	}
 
 
	@RequestMapping("/Login")
	public ModelAndView login(HttpServletRequest request,String id,String password) throws Exception{
 
		ModelAndView mav = new ModelAndView();
 
		User user1 = userService.selectByPrimaryKey(id);
 
		if(user1 == null || !password.equals(user1.getPassword())){
			mav.setViewName("index");
		    request.getSession().setAttribute("info", "error");
			return mav;
		}else{
			Role role = new Role();
			role.setRoleid(user1.getRoleid());
			List<Role> list =roleService.QueryAll(role);
			role =list.get(0);
			request.getSession().setAttribute("roleName", role.getRolename());
			Power power = powerService.selectByPrimaryKey(role.getPowerid());
 
			if(!StringUtil.isNullOrEmpty(power.getPower())){
				request.getSession().setAttribute("power", power.getPower());
			}
 
			String time = DateUtil.getStringToday();
			request.getSession().setAttribute("time", time);
			request.getSession().setAttribute("user", user1);
			mav.setViewName("redirect:/User/Main");
		}
		return mav;
	}
 
	@RequestMapping("/updateStudent")
	public String update(User user){
		userService.updateByPrimaryKey(user);
		return "redirect:/User/student";
	}
 
	@RequestMapping("/updateTeacher")
	public String updatet(User user){
		userService.updateByPrimaryKey(user);
		return "redirect:/User/teacher";
	}
 
	@RequestMapping("/updatePa")
	public String updatePa(String userID,String password){
		User user = new User();
		System.out.println(userID);
		User user1 = userService.selectByPrimaryKey(userID);
		user1.setPassword(password);
		userService.updateByPrimaryKey(user1);
		return "Main";
	}
 
	@RequestMapping("/delete")
	public String delete(String ID){
		userService.deleteByPrimaryKey(ID);
		return "redirect:/User/queryAll";
	}
 
	@RequestMapping("/teacher")
	public String QueryAllTeacher(HttpServletRequest request,User user){
 
		List<User> list = userService.QueryAllTeacher(user);
		request.setAttribute("list", list);
 
	   if(null != user.getName()){
			request.setAttribute("name", user.getName());
		}
	   if(null != user.getMobile()){
			request.setAttribute("mobile", user.getMobile());
		}
		return "teacher";
	}
 
 
	@ResponseBody
	@RequestMapping("/jsonteacher")
	public String QueryAllTeacherjson(HttpServletRequest request,User user){
 
		List<User> list = userService.QueryAllTeacher(user);
		JSONObject json = new JSONObject();
 
		return json.toJSONString(list);
	}
 
	@RequestMapping("/student")
	public String QueryAllStudent(HttpServletRequest request,User user){
 
		List<User> list = userService.QueryAllStudent(user);
		request.setAttribute("list", list);
 
		if(null != user.getName()){
			request.setAttribute("name", user.getName());
		}
		if(null != user.getMobile()){
			request.setAttribute("mobile", user.getMobile());
		}
		return "student";
	}
 
	@RequestMapping("/addteacher")
	public String  addUser(User user){
 
	    String passWord = "123456";
		user.setPassword(passWord);
		user.setType(Constans.TEACHER);
		userService.insert(user);
		return "redirect:/User/teacher";
	}
 
	@RequestMapping("/addstudent")
	public String  addStudent(User user){
 
		String passWord = "123456";
		user.setPassword(passWord);
		user.setType(Constans.STUDENT);
		userService.insert(user);
		return "redirect:/User/student";
	}
 
	@ResponseBody
	@RequestMapping("/queryOne")
	public String queryOne(String ID){
		User user = new User();
		user.setId(ID);
		List<User> list = userService.QueryAll(user);
		user = list.get(0);
		JSONObject json = new JSONObject();
		String data = json.toJSONString(user);
 
		return data;
	}
 
	@RequestMapping("/quit")
	public ModelAndView quit(HttpServletRequest request) throws Exception{
		ModelAndView mav = new ModelAndView();
		HttpSession session1 = request.getSession();
		session1.invalidate();
		request.getSession().setAttribute("info", "quit");
		mav.setViewName("index");
 
		return mav;
	}
 
 
 
}

排课控制层

@Controller
@RequestMapping("/Course")
public class CourseController {
 
    @Autowired
    private CourseService courseService;
    @Autowired
    private CurelationService curelationService;
 
 
    @Autowired
    private CoursecommentService coursecommentService;
 
    @ResponseBody
    @RequestMapping("/queryOneCom")
    public String queryOneCom(String ID){
        Coursecomment course = new Coursecomment();
        course.setId(ID);
        System.out.println("===================================="+ID);
        List<Coursecomment> list = coursecommentService.queryAll(course);
        course = list.get(0);
        JSONObject json = new JSONObject();
        return json.toJSONString(course);
    }
 
 
 
    @RequestMapping("addComment")
    public String addComment(HttpServletRequest request, Coursecomment coursecomment){
        User user = (User) request.getSession().getAttribute("user");
        coursecomment.setCreatetime(DateUtil.getStringToday());
        coursecomment.setUserid(user.getName());
        coursecomment.setId(String.valueOf(Math.random()).substring(2,10));
        coursecommentService.insert(coursecomment);
        return "redirect:/Course/suggeetion";
    }
 
 
    @ResponseBody
    @RequestMapping("jsoncourse")
    public String jsoncourse(HttpServletRequest request, Curelation course){
        User user = (User) request.getSession().getAttribute("user");
        /*String type = "1";
        if ("1".equals(user.getType())){
            type="2";
        }
        course.setType(type);
        course.setUserid(user.getId());*/
        List<Curelation> curelationList = curelationService.queryAll(course);
        List<Course> dataList = new ArrayList<>();
        for (int i = 0; i < curelationList.size(); i++) {
            Course curelation = courseService.selectByPrimaryKey(curelationList.get(i).getCourseid());
            dataList.add(curelation);
        }
 
        JSONObject json = new JSONObject();
        return json.toJSONString(dataList);
    }
 
    @RequestMapping("suggeetion")
    public String suggeetion(HttpServletRequest request, Coursecomment coursecomment){
 
        List<Coursecomment> coursecomments = coursecommentService.queryAll(coursecomment);
 
 
        request.setAttribute("list",coursecomments);
        return "suggeetion";
    }
 
    @RequestMapping("view")
    public String view(HttpServletRequest request){
        User user = (User) request.getSession().getAttribute("user");
 
        String type = "1";
 
        if ("1".equals(user.getType())){
            type="2";
        }
 
        List<Map<String,String>> list=curelationService.courseview(type,user.getId());
        request.setAttribute("list",list);
        return "courseview";
    }
 
    @RequestMapping("deletecomment")
    public String deletecomment(String ID){
        coursecommentService.deleteByPrimaryKey(ID);
        return "redirect:/Course/suggeetion";
    }
 
 
 
    @RequestMapping("queryAll")
    public String queryAll(HttpServletRequest request, Course course){
        List<Course> list = courseService.queryAll(course);
        request.setAttribute("list",list);
 
        return "course";
    }
 
    @RequestMapping("/receive")
    public String receive(HttpServletRequest request, HttpServletResponse response, MultipartFile file){
 
        try {
            //也可以用request获取上传文件
            //MultipartFile  fileFile = request.getFile("file"); //这里是页面的name属性
            //转换成输入流
            InputStream is = file.getInputStream();
            //得到excel
            Workbook workbook = Workbook.getWorkbook(is);
            //得到sheet
            Sheet sheet = workbook.getSheet(0);
            //得到列数
            int colsNum = sheet.getColumns();
            //得到行数
            int rowsNum = sheet.getRows();
            //单元格
            Cell cell;
            Cell cell1;
 
            List<Map> list = new ArrayList<>();
            Map<Integer, String> map = new HashMap<Integer, String>();
            for (int i = 1; i < rowsNum; i++) {//我的excel第一行是标题,所以 i从1开始
                cell  = sheet.getCell(0,i);
                cell1 = sheet.getCell(5,i);
                Curelation curelation = new Curelation();
 
                curelation.setId(cell.getContents());
                curelation.setScore(cell1.getContents());
                curelationService.updateByPrimaryKey(curelation);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } catch (BiffException e) {
            e.printStackTrace();
        }
        return "redirect:/Course/queryCourse";
    }
 
    @RequestMapping("/queryCourse")
    public String queryScore(HttpServletRequest request,Curelation curelation){
 
        curelation.setType("1");
        List<Curelation> list = curelationService.queryAll(curelation);
        request.setAttribute("list",list );
        return "ScoreList";
    }
 
    @RequestMapping("/teacher")
    public String teacher(HttpServletRequest request){
        User user = (User) request.getSession().getAttribute("user");
        Course course = new Course();
        course.setCourseteacher(user.getName());
        List<Course> courseList = courseService.queryAll(course);
        request.setAttribute("list",courseList);
        return "teacherDeal";
    }
 
    @RequestMapping("/student")
    public String student(HttpServletRequest request){
        Course course = new Course();
        course.setStatus("1");
        List<Course> courseList = courseService.queryAll(course);
        request.setAttribute("list",courseList);
        return "studentChoose";
    }
 
 
    @RequestMapping("/upload")
    public  String upload(){
 
        return "uploadScore";
    }
 
 
    @RequestMapping("/Export")
    public void Export(HttpServletResponse response, User user){
 
        response.setContentType("application/binary;charset=UTF-8");
        try {
            ServletOutputStream out = response.getOutputStream();
            String fileName1 = "学生信息";
            String fileName2 = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(new Date());
            String fileName = fileName1+fileName2;
            response.setHeader("Content-disposition", "attachment; filename=" +new String(fileName.getBytes("gbk"),"iso8859-1") + ".xls");
            String[] titles = { "成绩编号","学生编号", "学生姓名", "课程编号", "课程名称", "成绩" };
            courseService.export(titles, out,user);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
 
 
 
    @RequestMapping("delete")
    public String delete(String ID){
        courseService.deleteByPrimaryKey(ID);
        return "redirect:/Course/queryAll";
    }
 
    @RequestMapping("update")
    public String update(Course course){
        courseService.updateByPrimaryKey(course);
        return "redirect:/Course/queryAll";
    }
 
    @Transactional
    @RequestMapping("update1")
    public String update1(HttpServletRequest request,Course course){
        course.setStatus("1");
        courseService.updateByPrimaryKey(course);
        User user = (User) request.getSession().getAttribute("user");
        Curelation curelation1 = new Curelation();
        curelation1.setCourseid(course.getId());
        curelation1.setUserid(user.getId());
        List<Curelation> curelationList = curelationService.queryAll(curelation1);
        if(curelationList.size()==0){
            Curelation curelation = new Curelation();
            curelation.setUserid(user.getId());
            curelation.setCourseid(course.getId());
            curelation.setId(String.valueOf(Math.random()).substring(2, 10));
            curelation.setType("2");
            curelationService.insert(curelation);
        }
        return "redirect:/Course/teacher";
    }
 
    @RequestMapping("update2")
    public String update2(HttpServletRequest request,Course course){
        User user = (User) request.getSession().getAttribute("user");
        Curelation curelation = new Curelation();
        curelation.setUserid(user.getId());
        curelation.setCourseid(course.getId());
        List<Curelation> curelationList = curelationService.queryAll(curelation);
        if(curelationList.size() == 0){
            curelation.setId(String.valueOf(Math.random()).substring(2, 10));
            curelation.setType("1");
            curelationService.insert(curelation);
        }else{
            Curelation curelation1 = curelationList.get(0);
            curelation1.setUserid(user.getId());
            curelation1.setCourseid(course.getId());
            System.out.println(curelation1.toString());
            curelationService.updateByPrimaryKey(curelation1);
        }
        return "redirect:/Course/student";
    }
 
    @ResponseBody
    @RequestMapping("/queryOne")
    public String queryOne(String ID){
        Course course = new Course();
        course.setId(ID);
        List<Course> list = courseService.queryAll(course);
        course = list.get(0);
        JSONObject json = new JSONObject();
        return json.toJSONString(course);
    }
 
    @RequestMapping("add")
    public String addCourse(Course course){
        course.setId(String.valueOf(Math.random()).substring(2, 10));
        System.out.println(course.toString());
        courseService.insert(course);
        return "redirect:/Course/queryAll";
    }
 
}

公告控制层

@Controller
@RequestMapping("/Notice")
public class NoticeController {
 
	@Autowired
	private NoticeService noticeService;
 
	@RequestMapping("/add")
	public String toAdd(){
		return "NoticeAdd";
	}
 
 
	@RequestMapping("/modify")
	public String modify(HttpServletRequest request,Notice notice){
		List<Notice> noticeList = noticeService.queryAll(notice);
		request.setAttribute("list",noticeList);
		return "noticeModfiy";
	}
 
	@RequestMapping("/update")
	public String update(HttpServletRequest request,Notice notice){
		User user = (User) request.getSession().getAttribute("user");
		notice.setUserid(user.getId());
		notice.setCreatdate(DateUtil.getStringToday());
		noticeService.update(notice);
		return "redirect:/Notice/modify";
	}
 
	@RequestMapping("/delete")
	public String delete(HttpServletRequest request,Notice notice){
		List<Notice> noticeList = noticeService.queryAll(notice);
		request.setAttribute("list",noticeList);
		return "noticeDelete";
	}
 
	@RequestMapping("/delete1")
	public String delete1(String ID){
		noticeService.delete(ID);
		return "redirect:/Notice/delete";
	}
 
	@ResponseBody
	@RequestMapping("/queryOne")
	public String queryOne(String id){
		System.out.println("=================="+id);
 
		Notice notice = new Notice();
		notice.setId(id);
		List<Notice> noticeList = noticeService.queryAll(notice);
		JSONObject json = new JSONObject();
		return json.toJSONString(noticeList.get(0));
	}
 
 
	@RequestMapping("/add1")
	public String  add(HttpServletRequest request,String Content,String biaoti) throws Exception{
		User user = (User) request.getSession().getAttribute("user");
		Notice notice = new Notice();
		notice.setContent(Content);
		notice.setTitle(biaoti);
		notice.setCreatdate(DateUtil.Date2String(new Date()));
		notice.setId(String.valueOf(Math.random()).substring(2, 8));
		notice.setUserid(user.getId());
		noticeService.add(notice);
 
		return "redirect:/User/Main";
	}
}

角色控制层

@Controller
@RequestMapping("/Role")
public class RoleController {
 
	@Autowired
	private RoleService depotService;
 
	@Autowired
	private PowerService powerService;
 
	@RequestMapping("/update")
	public String update(String id,String rolename,String powerContent){
		Role role = new Role();
		role.setRoleid(id);
		role.setRolename(rolename);
		depotService.update(role);
		List<Role> list = depotService.QueryAll(role);
		Role role1 = list.get(0);
		Power power = new Power();
		if(powerContent.indexOf("110") != -1){
			powerContent = powerContent + ",1100";
		}
		if(powerContent.indexOf("120") != -1){
			powerContent = powerContent + ",1200";
		}
		if(powerContent.indexOf("130") != -1){
			powerContent = powerContent + ",1300";
		}
		if(powerContent.indexOf("140") != -1){
			powerContent = powerContent + ",1400";
		}
		if(powerContent.indexOf("150") != -1){
			powerContent = powerContent + ",1500";
		}
		power.setPower(powerContent);
		power.setRoleid(role1.getPowerid());
		powerService.update(power);
		return "redirect:/Role/queryAll";
	}
 
	@RequestMapping("/delete")
	public String delete(String ID){
		depotService.deleteByPrimaryKey(ID);
		return "redirect:/Role/queryAll";
	}
 
	@RequestMapping("/queryAll")
	public String queryAll(HttpServletRequest request,Role role){
 
 
		List<Role> list = depotService.QueryAll(role);
		request.setAttribute("list", list);
 
	   if(null != role.getRolename()){
			request.setAttribute("rolename", role.getRolename());
		}
		return "Role";
	}
 
	@RequestMapping("/add")
	public String  add(String roleid,String rolename,String powerContent){
		Power power1 = new Power();
		Role role = new Role();
		String powerid = String.valueOf(Math.random()).substring(2, 8);
		role.setRoleid(String.valueOf(Math.random()).substring(2, 6));
		role.setPowerid(powerid);
		role.setRolename(rolename);
 
		power1.setPower(powerContent);
		power1.setRoleid(powerid);
		power1.setId(String.valueOf(Math.random()).substring(2, 8));
 
		powerService.insert(power1);
		depotService.insert(role);
		return "redirect:/Role/queryAll";
	}
 
	@ResponseBody
	@RequestMapping("/queryOne")
	public String queryOne(String ID){
		JSONObject json = new JSONObject();
		Role depot = new Role();
		Power power = new Power();
		power.setId(ID);
		System.out.println(ID);
		depot.setRoleid(ID);
 
		List<Role> list = depotService.QueryAll(depot);
 
		Role role1 = list.get(0);
		Power power1 = powerService.selectByPrimaryKey(role1.getPowerid());
		String name = role1.getRolename();
 
		role1.setPowerid(power1.getPower());
 
		String data = json.toJSONString(role1);
 
		return data;
	}
 
	@ResponseBody
	@RequestMapping("/getAll")
	public String getAll(Role role){
		JSONObject json = new JSONObject();
		List<Role> list = depotService.QueryAll(role);
 
		String jsonq = json.toJSONString(list);
 
		System.out.println(jsonq);
		return jsonq;
	}
 
 
}

以上就是Java实战之课程信息管理系统的实现的详细内容,更多关于Java课程管理系统的资料请关注三水点靠木其它相关文章!

Java/Android 相关文章推荐
使用Springboot实现健身房管理系统
Jul 01 Java/Android
SpringBoot+Vue+JWT的前后端分离登录认证详细步骤
Sep 25 Java/Android
关于MybatisPlus配置双数据库驱动连接数据库问题
Jan 22 Java/Android
使用Java去实现超市会员管理系统
Mar 18 Java/Android
Java 数据结构七大排序使用分析
Apr 02 Java/Android
Android自定义双向滑动控件
Apr 19 Java/Android
Java存储没有重复元素的数组
Apr 29 Java/Android
java开发双人五子棋游戏
May 06 Java/Android
Android studio 简单计算器的编写
May 20 Java/Android
Android中View.post和Handler.post的关系
Jun 05 Java/Android
springboot读取resources下文件的方式详解
Jun 21 Java/Android
Java Redisson多策略注解限流
Sep 23 Java/Android
Android超详细讲解组件ScrollView的使用
Spring Boot DevTools 全局配置学习指南
Spring事务管理下synchronized锁失效问题的解决方法
Mar 31 #Java/Android
Spring依赖注入多种类型数据的示例代码
Mar 31 #Java/Android
springboot layui hutool Excel导入的实现
spring注解 @PropertySource配置数据源全流程
Mar 25 #Java/Android
Netty客户端接入流程NioSocketChannel创建解析
Mar 25 #Java/Android
You might like
简单的PHP图片上传程序
2008/03/27 PHP
linux下 C语言对 php 扩展
2008/12/14 PHP
php array_pop()数组函数将数组最后一个单元弹出(出栈)
2011/07/12 PHP
探讨:web上存漏洞及原理分析、防范方法
2013/06/29 PHP
PHP中使用localhost连接Mysql不成功的解决方法
2014/08/20 PHP
php生成随机颜色的方法
2014/11/13 PHP
如何使用PHP Embed SAPI实现Opcodes查看器
2015/11/10 PHP
优化javascript的执行速度
2010/01/23 Javascript
JSON 学习之JSON in JavaScript详细使用说明
2010/02/23 Javascript
jquery checkbox,radio是否选中的判断代码
2010/03/20 Javascript
jquery的attr方法禁用表单元素禁用输入内容
2014/06/23 Javascript
javascript实现拖放效果
2015/12/16 Javascript
深入理解ECMAScript的几个关键语句
2016/06/01 Javascript
使用Bootstrap typeahead插件实现搜索框自动补全的方法
2016/07/07 Javascript
Google 地图API Map()构造器详解
2016/08/06 Javascript
nodejs微信公众号支付开发
2016/09/19 NodeJs
基于vue.js路由参数的实例讲解——简单易懂
2017/09/07 Javascript
原生JS实现循环Nodelist Dom列表的4种方式示例
2018/02/11 Javascript
JS实现电话号码的字母组合算法示例
2019/02/26 Javascript
微信小程序+云开发实现欢迎登录注册
2019/05/24 Javascript
微信小程序错误this.setData报错及解决过程
2019/09/18 Javascript
js回到页面指定位置的三种方式
2020/12/17 Javascript
[40:19]2018完美盛典CS.GO表演赛
2018/12/17 DOTA
基于python的图片修复程序(实现水印去除)
2018/06/04 Python
深入flask之异步非堵塞实现代码示例
2018/07/31 Python
python3多线程知识点总结
2019/09/26 Python
Python 用三行代码提取PDF表格数据
2019/10/13 Python
Python实现ElGamal加密算法的示例代码
2020/06/19 Python
python super()函数的基本使用
2020/09/10 Python
Python基于unittest实现测试用例执行
2020/11/25 Python
纯css3实现的动画按钮的实例教程
2014/11/17 HTML / CSS
澳大利亚最大的百货公司:Myer
2018/12/21 全球购物
C语言开发工程师测试题
2016/12/20 面试题
应届生妇产科护士求职信
2013/10/27 职场文书
2014年卫生保健工作总结
2014/12/08 职场文书
初中数学课堂教学反思
2016/02/17 职场文书