临近学期结束,还是毕业设计,你还在做java程序网络编程,期末作业,老师的作业要求觉得大了吗?不知道毕业设计该怎么办?网页功能的数量是否太多?没有合适的类型或系统?等等。今天给大家介绍一篇基于Springboot的高校教学评价系统的设计与实现。
本教学信息反馈系统通过分析和确定系统的角色和功能划分,按照业务合理区分为不同的菜单功能模块。从学校管理者和学生相关管理人员的角度出发,对每个功能的需求实现点进行人性化详细的构思。对每个功能的细节点进行分析设计整合完成整个教学评价系统的设计。
学生功能模块:即登录功能、评价教师、修改信息、教师图表、退出系统。
系统管理员功能模块:学生管理、教师管理、课程管理、教师统计以及系统配置等。。
package com.qut.controller;
import java.util.Date;
import java.util.List;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@Controller
@RequestMapping("/category")
public class CategoryController {
@Resource(name = "categoryService")
private CategoryService categoryService;
Logger log = Logger.getLogger(Log4jLogsDetial.class);
@RequestMapping(value = "/categoryQuery.do", produces = "application/json;charset=utf-8")
@ResponseBody
public String categoryQuery(@Param("id") Integer id, @Param("type") Integer type, @Param("name") String name) {
List<Category> list = categoryService.categoryQuery(new Category());
log.info("查询参数" + id);
JsonConfig jc = new JsonConfig();
jc.registerJsonValueProcessor(Date.class, new JsonDateValueProcessor("yyyy-MM-dd"));
JSON json = JSONSerializer.toJSON(new JsonResult<List<Category>>(list), jc);
return json.toString();
}
@RequestMapping(value = "/categoryUpdate.do", produces = "application/json;charset=utf-8")
@ResponseBody
public String categoryUpdate(HttpServletRequest request, HttpServletResponse response) {
Integer total = BaseUtils.toInteger(request.getParameter("total"));
for (int i = 0; i < total; i++) {
Integer id = BaseUtils.toInteger(request.getParameter("id" + i));
Float updatePrice = BaseUtils.toFloat(request.getParameter("updatePrice" + i));
Category category = new Category();
if (updatePrice != 0) {
category.setId(id);
category.setPrice(updatePrice);
categoryService.categoryUpdate(category);
log.info("更新参数" + id);
}
}
JsonConfig jc = new JsonConfig();
jc.registerJsonValueProcessor(Date.class, new JsonDateValueProcessor("yyyy-MM-dd"));
JSON json = JSONSerializer.toJSON(new JsonResult<Category>(new Category()), jc);
return json.toString();
}
}
idea运行启动
系统开发后,在生产环境配置项目运行环境,具体步骤如下:
安装linux或者windows10操作系统;
安装JDK1.8并配置环境变量;
安装MySQL5.7版本以上版本数据库,创建数据库并执行脚本创建表;
在idea中运行打包;
1.开发语言:Java
2.开发模式:B/S
3.数据库:MySQL5.7
4.框架:Springboot
此系统的开发采用java语言开发,基于B/S结构,这些开发环境使系统更加完善。使用到的工具和技术都是开源免费的。
开发工具 Eclipse
语言 JDK1.8 、Springboot
硬件:笔记本电脑;
软件:Tomcat8.0 Web服务器、Navicat数据库客户端、MySQL;
操作系统:Windows 10;
其它软件:截图工具、常用浏览器;
以上是本系统的部分功能展示,如果你的选题正好相符,那么可以做毕业设计或课程设计使用。