package cn.onehand.acss.controller;
import cn.onehand.acss.pojo.Syinfo;
import cn.onehand.acss.server.Code;
import cn.onehand.acss.service.ServiceSyinfo;
import cn.onehand.acss.service.impl.ServiceSyinfoImpl;
import cn.onehand.acss.utils.DataBool;
import cn.onehand.acss.utils.JsonUTils;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.lang.reflect.Method;
import java.sql.SQLException;
import java.util.List;
/**
*
*/
@WebServlet(value = "/sys")
public class SyinfoConWeb extends HttpServlet {
private ServiceSyinfo serviceSyinfo = new ServiceSyinfoImpl();
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
req.setCharacterEncoding("utf-8");
resp.setContentType("text/html;charset=utf-8");
String func = req.getParameter("func");
System.out.println(func);
try {
Class cls = this.getClass();
Method method = cls.getDeclaredMethod(func, HttpServletRequest.class, HttpServletResponse.class);
method.invoke(this, req, resp);
} catch (Exception e) {
e.printStackTrace();
}
}
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
doPost(req, resp);
}
//删除相应id课程
public void deleteByid(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
Code c = new Code(false);
String id = request.getParameter("id");
try {
int i = serviceSyinfo.DeleteSyinfoByid(id);
c.setData(i);
if (i == 0) {
c.setMessage("删除失败");
c.setFlag(false);
} else {
c.setFlag(true);
c.setMessage("删除成功");
}
} catch (SQLException throwables) {
throwables.printStackTrace();
}
JsonUTils.printResult(response, c);
}
//删除教师课程
public void deleteByTeacherId(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String teacherid = request.getParameter("teacher_name");
Code c = new Code(false);
try {
int i = serviceSyinfo.DeleteSyinfoByteacherId(teacherid);
c.setData(i);
if (i == 0) {
c.setMessage("删除失败");
c.setFlag(false);
} else {
c.setFlag(true);
c.setMessage("删除成功");
}
} catch (SQLException throwables) {
throwables.printStackTrace();
}
JsonUTils.printResult(response, c);
}
//修改单个课表信息
public void UpdateSyinfo(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
Code c = new Code(false);
Syinfo syinfo = JsonUTils.parseJSONObject(request, Syinfo.class);
try {
int i = serviceSyinfo.UpdateSyinfo(syinfo);
c.setData(i);
if (i == 0) {
c.setMessage("修改失败");
c.setFlag(false);
} else {
c.setFlag(true);
c.setMessage("修改成功");
}
} catch (SQLException throwables) {
throwables.printStackTrace();
}
JsonUTils.printResult(response, c);
}
//time 4_2
//查询所有课程
public void findAll(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
Code c = new Code(false);
try {
List<Syinfo> byAll = serviceSyinfo.findByAll();
c.setData(byAll);
if (byAll== null) {
c.setMessage("查询失败");
c.setFlag(false);
} else {
c.setFlag(true);
c.setMessage("查询成功");
}
} catch (SQLException throwables) {
throwables.printStackTrace();
}
JsonUTils.printResult(response, c);
}
//查询所有班级课程
public void findByclassId(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
Code c = new Code(false);
try {
List<Syinfo> byAll = serviceSyinfo.findByClassId(request.getParameter("class_id"));
c.setData(byAll);
if (byAll == null) {
c.setMessage("查询失败");
c.setFlag(false);
} else {
c.setFlag(true);
c.setMessage("查询成功");
}
} catch (SQLException throwables) {
throwables.printStackTrace();
}
JsonUTils.printResult(response, c);
}
//查询教师课程安排
public void findByTeacherId(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
Code c = new Code(false);
try {
List<Syinfo> byAll = serviceSyinfo.findByTeacherId(request.getParameter("teacher_name"));
c.setData(byAll);
if (byAll == null) {
c.setMessage("查询失败");
c.setFlag(false);
} else {
c.setFlag(true);
c.setMessage("查询成功");
}
} catch (SQLException throwables) {
throwables.printStackTrace();
}
JsonUTils.printResult(response, c);
}
//添加课程安排
public void addSyInfo(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
Code c = new Code(false);
// 接收前端的json格式数据
Syinfo syinfo = JsonUTils.parseJSONObject(request, Syinfo.class);
System.out.println(syinfo);
try {
int i = serviceSyinfo.addInfo(syinfo);
c.setData(i);
if (i == 0) {
c.setMessage("添加失败");
c.setFlag(false);
} else {
c.setFlag(true);
c.setMessage("添加成功");
}
} catch (SQLException throwables) {
throwables.printStackTrace();
}
JsonUTils.printResult(response, c);
}
//课表批量插入
public void addAllInfo(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
System.out.println("你还");
Syinfo[] syinfos = JsonUTils.parseJSONObject(request, Syinfo[].class);
Code c = new Code(false);
try {
int i = serviceSyinfo.addAllInfo(syinfos);
c.setData(i);
if (i == 0) {
c.setMessage("添加失败");
c.setFlag(false);
} else {
c.setFlag(true);
c.setMessage("添加成功");
}
} catch (SQLException e) {
e.printStackTrace();
}
JsonUTils.printResult(response, c);
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
基于javaweb+vue+mysql的课程管理系统源码+数据(高分毕业设计).zip该项目是个人高分毕业设计项目源码,已获导师指导认可通过,都经过严格调试,确保可以运行!放心下载使用。 1、该资源内项目代码都是经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载使用,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能。 基于javaweb+vue+mysql的课程管理系统源码.zip基于javaweb+vue+mysql的课程管理系统源码.zip基于javaweb+vue+mysql的课程管理系统源码.zip基于javaweb+vue+mysql的课程管理系统源码.zip基于javaweb+vue+mysql的课程管理系统源码.zip基于javaweb+vue+mysql的课程管理系统源码.zip
资源推荐
资源详情
资源评论
收起资源包目录
基于javaweb+vue+mysql的课程管理系统源码+数据(高分毕业设计).zip (152个子文件)
SyinfoConWeb.class 6KB
SyinfoConWeb.class 6KB
UserServlet.class 5KB
UserServlet.class 5KB
SyinfoDaoImpl.class 4KB
SyinfoDaoImpl.class 4KB
UserDaoImpl.class 4KB
UserDaoImpl.class 4KB
Syinfo.class 3KB
Syinfo.class 3KB
ServiceSyinfoImpl.class 3KB
ServiceSyinfoImpl.class 3KB
User.class 3KB
User.class 3KB
UserServiceImpl.class 2KB
UserServiceImpl.class 2KB
JsonData.class 2KB
JsonData.class 2KB
JsonUTils.class 2KB
JsonUTils.class 2KB
DataBool.class 1KB
DataBool.class 1KB
MD5Utils.class 1KB
MD5Utils.class 1KB
Code.class 1KB
Code.class 1KB
DruidUtils.class 1KB
DruidUtils.class 1KB
SyinfoDao.class 976B
SyinfoDao.class 976B
ServiceSyinfo.class 941B
ServiceSyinfo.class 941B
UserTest.class 736B
UserDao.class 615B
UserDao.class 615B
UserService.class 548B
UserService.class 548B
InterfactStaticData.class 490B
InterfactStaticData.class 490B
chunk-vendors.e1e57676.css 205KB
chunk-vendors.e1e57676.css 205KB
app.3eb111c5.css 135B
app.3eb111c5.css 135B
.gitignore 182B
index.html 850B
index.html 850B
404.html 152B
404.html 152B
favicon.ico 4KB
favicon.ico 4KB
ACSS.iml 4KB
druid-1.1.6.jar 2.56MB
spring-core-4.1.2.RELEASE.jar 982KB
jackson-databind-2.3.3.jar 894KB
mysql-connector-java-5.1.29.jar 856KB
spring-beans-4.1.2.RELEASE.jar 690KB
fastjson-1.2.59.jar 625KB
commons-collections-3.2.1.jar 562KB
spring-jdbc-4.1.2.RELEASE.jar 417KB
commons-codec-1.10.jar 278KB
spring-tx-4.1.2.RELEASE.jar 246KB
commons-beanutils-1.9.2.jar 228KB
jackson-core-2.3.3.jar 195KB
commons-dbutils-1.6.jar 76KB
commons-logging-1.1.1.jar 59KB
jackson-annotations-2.3.3.jar 36KB
cors-filter-2.5.jar 31KB
java-property-utils-1.9.1.jar 8KB
SyinfoConWeb.java 7KB
UserServlet.java 5KB
SyinfoDaoImpl.java 3KB
UserDaoImpl.java 3KB
Syinfo.java 3KB
ServiceSyinfoImpl.java 2KB
User.java 2KB
UserServiceImpl.java 2KB
JsonData.java 1KB
ServiceSyinfo.java 1KB
SyinfoDao.java 1KB
DataBool.java 1KB
DruidUtils.java 937B
Code.java 917B
MD5Utils.java 783B
JsonUTils.java 764B
UserService.java 540B
UserDao.java 538B
UserTest.java 331B
InterfactStaticData.java 282B
chunk-vendors-legacy.4f11d1d4.js 926KB
chunk-vendors-legacy.4f11d1d4.js 926KB
chunk-vendors.6b7a9330.js 831KB
chunk-vendors.6b7a9330.js 831KB
app-legacy.2c25fc27.js 22KB
app-legacy.2c25fc27.js 22KB
app.ffd9254a.js 20KB
app.ffd9254a.js 20KB
chunk-vendors-legacy.4f11d1d4.js.map 3.69MB
chunk-vendors-legacy.4f11d1d4.js.map 3.69MB
chunk-vendors.6b7a9330.js.map 3.23MB
chunk-vendors.6b7a9330.js.map 3.23MB
共 152 条
- 1
- 2
资源评论
- 小刘真的很努力2024-01-11资源内容详尽,对我有使用价值,谢谢资源主的分享。
盈梓的博客
- 粉丝: 9178
- 资源: 2200
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- SpringCloud期末大作业基于SpringBoot的学生选课系统源码+数据库+运行说明(高分项目)
- 本科毕业论文(设计)指导手册.doc
- 自动打开谷歌浏览器绑定端口号:9222
- claude_pdf_qa.py
- 软件工程领域C/C++和Java程序员的蓝桥杯参赛指南及技巧详解
- 基于opencv和wxWidgets的GUI处理图像的许多小功能
- 基于知识图谱的智慧城市主题智能问答系统项目源码+文档说明(Python项目)
- C++《基于选择调度算法、量子算法和遗传算法实现多AGV柔性车间调度服务软件》+项目源码+文档说明
- 大学生创新创业项目立项书撰写指南与范例
- LS1043、LS1046平台使用方法
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功