我正在使用 Struts2、JSP 和休眠创建在线评估应用程序。
所有应用程序部分都运行良好。
我的应用程序使用会话的概念来维护正在考试的用户的状态。,因为万一浏览器关闭,系统崩溃我不希望我的用户应该从第一个问题开始。事实上,我希望我的用户应该从他离开的地方开始。现在我无法思考这个问题。如何测试这个。有什么简单的方法可以让我简单地测试我的概念。
错误的用户关闭了浏览器,所以当他返回时,他/她将从他/她离开的地方开始考试。
他只需要输入网址>输入他的考试ID>继续考试。
为此,我使用 JDBC 存储使用 tomcat 服务器会话持久性。我能够使用会话 ID 将会话对象存储在数据库表中。
当我重新打开浏览器时,我能够获取会话 ID,但无法获取数据。我的应用程序显示 NullPointerException。
public class UserAction extends ActionSupport{
private String candidateID;
private List loadDropDown;
//getter setter methods
public String user_page1() throws IOException{
//loading examID in drop down list.
loadDropDown=new ArrayList();
//getting context object
ServletContext ctx=ServletActionContext.getServletContext();
//creating session object
HttpSession session = ServletActionContext.getRequest().getSession(false);
//showing session id
System.out.println("User Page 1 :"+session.getId());
if(session.isNew()){
here if user logging first time then application should be able to create new session object and load fresh data.
}
else
{
application should show them a question where they left
}
...
所以请帮我解决这个问题。
提前致谢。
拉文德帕尔·辛格