资源简介
利用struts与hibernate实现在线考试系统,验证码登录,题目分页显示,可以更改每页显示题目条数,并进行动态分页显示
代码片段和文件信息
package action;
import java.util.Enumeration;
import java.util.List;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import javax.servlet.http.HttpSessionContext;
import org.apache.struts2.ServletActionContext;
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;
import dao.IQuestionDao;
import dao.QuestionDaoImpl;
import po.*;
import service.IQuestionService;
import service.QuestionServiceImpl;
import vo.PageBean;
public class GetQuestionAction extends ActionSupport {
private IQuestionService questionService = new QuestionServiceImpl();
private int page;
private int pageSize;
private PageBean pageBean;
public int getPage() {
return page;
}
public void setPage(int page) {
this.page = page;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public String execute() {
pageBean = questionService.getPageBean(pageSize page);
ActionContext.getContext().getSession().put(“pageBean“ pageBean);
return SUCCESS;
}
}
相关资源
- ssm-crud(spring+springmvc+mybatis)
- 修改代码的艺术(working effectively wi
- 学生毕业设计-宿舍管理系统设计与实
- SSM的一个简单,增删改查都有
- 酒店推荐系统.zip
- Refactoring_Improving_the_Design_of_Existing_C
- IntelliJ IDEA2018.2中文汉化包
- 消消乐A2版源码和演示视频.rar
- SSM框架管理系统
- 基于web的酒店客房管理系统
- 蓝牙五子棋
- DB旅游系统
- ssm框架搭建的简单的教务管理系统
- GatherPlatform数据抓取平台
- 房屋出租管理系统源码及毕设论文
- 深入浅出 RxJS(全本)
- mybatis+spring+springmvc+easyui做的一个登陆
- 基于Struts2、hibernate、spring实现的新闻
- 学生管理系统包含数据库文件以及需
- 支付宝web接口调用
- qcby_ssm.zip
- JDK11文档 jdk-11.0.4 API文档
- 第一行代码第二版源代码.rar
- Algorithms 4th Edition(算法,第4版) 中
- SSH_AddPage登录删除修改功能
- 辛小姐的店网上店铺源代码+数据库
- 北京动力节点-北京动力节点 Reyco郭
- 深入浅出Spring Boot 2.x 图书配套源码
- Babylon.JS开发基础英文版 Babylon.JS.Ess
- 酒店管理系统前台加后台
评论
共有 条评论