资源简介
前台使用bootstrap技术,后台使用structs和herbinate, 数据库为mysql, 系统分为老师和学生二个角色,老师可以管理学生和试题,学生可以在线进行答题并且实时获得分数。
代码片段和文件信息
package com.action;
import java.io.PrintWriter;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts2.ServletActionContext;
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;
import com.service.StudentServiceImpl;
public class CheckStudentID extends ActionSupport{
/**
*
*/
private static final long serialVersionUID = 1L;
private String studentID;
private StudentServiceImpl studentServiceImpl = new StudentServiceImpl();
public String getStudentID() {
return studentID;
}
public void setStudentID(String studentID) {
this.studentID = studentID;
}
@Override
public String execute() throws Exception {
HttpServletResponse response = (HttpServletResponse) ActionContext.getContext().get(ServletActionContext.HTTP_RESPONSE);
response.setCharacterEncoding(“UTF-8“);
PrintWriter out = response.getWriter();
if (studentServiceImpl.getStudentInfo(studentID)!=null) {//如果有重复的话
out.print(“学生编号已存在!请重新输入!“);
}else{
out.print(“可以注册!“);
}
return null;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
....... 3231 2015-12-20 17:19 examOnline\.classpath
....... 50 2015-12-20 17:19 examOnline\.gitignore
....... 531 2015-12-20 17:19 examOnline\.myhibernatedata
....... 1558 2015-12-20 17:19 examOnline\.project
....... 122 2015-12-20 17:19 examOnline\.reverse.properties
....... 510 2015-12-20 17:19 examOnline\.settings\.jsdtscope
....... 85 2015-12-20 17:19 examOnline\.settings\org.eclipse.core.resources.prefs
....... 357 2015-12-20 17:19 examOnline\.settings\org.eclipse.jdt.core.prefs
....... 481 2015-12-20 17:19 examOnline\.settings\org.eclipse.wst.common.component
....... 387 2015-12-20 17:19 examOnline\.settings\org.eclipse.wst.common.project.facet.core.xm
....... 49 2015-12-20 17:19 examOnline\.settings\org.eclipse.wst.jsdt.ui.superType.container
....... 6 2015-12-20 17:19 examOnline\.settings\org.eclipse.wst.jsdt.ui.superType.name
....... 66 2015-12-20 17:19 examOnline\.tern-project
....... 575 2015-12-20 17:19 examOnline\Readme.md
....... 1407 2015-12-20 17:19 examOnline\src\.struts.mex
....... 1105 2015-12-20 17:19 examOnline\src\com\action\CheckStudentID.java
....... 814 2015-12-20 17:19 examOnline\src\com\action\GetRandomSubjects.java
....... 2114 2015-12-20 17:19 examOnline\src\com\action\LoginAction.java
....... 2411 2015-12-20 17:19 examOnline\src\com\action\QueryStudentByClassAction.java
....... 960 2015-12-20 17:19 examOnline\src\com\action\QueryStudentByIDAction.java
....... 1002 2015-12-20 17:19 examOnline\src\com\action\QueryStudentByNameAction.java
....... 2385 2015-12-20 17:19 examOnline\src\com\action\QuerySubjecLiketAction.java
....... 1522 2015-12-20 17:19 examOnline\src\com\action\QuerySubjectAction.java
....... 1256 2015-12-20 17:19 examOnline\src\com\action\ShowSubjectAnswerAction.java
....... 1212 2015-12-20 17:19 examOnline\src\com\action\StudentAddAction.java
....... 1513 2015-12-20 17:19 examOnline\src\com\action\StudentQuery.java
....... 1966 2015-12-20 17:19 examOnline\src\com\action\SubjectAddAction.java
....... 647 2015-12-20 17:19 examOnline\src\com\action\SubjectDeleteAction.java
....... 847 2015-12-20 17:19 examOnline\src\com\action\SubjectPaticularAction.java
....... 2131 2015-12-20 17:19 examOnline\src\com\action\SubjectUpdateAction.java
............此处省略1402个文件信息
相关资源
- 基于JSP学生成绩管理系统软件的开发
- 安卓平台记账软件源代码JAVA
- 创建桌面快捷方式源代码(android)
- 基于Android的电话号码扫描及条形码扫
- youareanidiot源代码
- 《Java EE企业级应用开发教程Spring+Sp
- JSP+MYSQL校园一卡通系统 源代码
- 《程序员代码面试指南 》左神 高清
- 简易C语言编译器Java源代码
- 李刚《疯狂Java讲义》第三版光盘内容
- Android代码-查询软件源代码身份证号号
- 基于authorware的多媒体考试系统V2 源代
- 用java开发的扑克牌游戏程序源代码
- 电子商务平台的APP源代码
- 吉林大学数据库系统应用开发源代码
- 基于SSH的网上书城_j2ee专周_源代码+数
- java全屏游戏及源代码
- 购物网站系统源代码网页模板正式版
- 酒店管理系统JAVA源代码245552
- 整套JAVA酒店管理系统源代码含设计文
- android激情投篮游戏源代码
- 130个Weixin小程序源代码案例
- 企业通讯录源代码
- JAVA实现经典坦克大战源代码
- 八勺java斗地主AI版电脑智能拆牌
- JAVA+access综合测评系统毕业设计(源代
- 中国移动mm7api 源代码(中兴)
- Cocos2d-x3.1 《飞机大战》源代码全
- 《Java编程艺术》中文版pdf以及源代码
- JAVA基于J2ME的手机游戏开发(论文+源
评论
共有 条评论