● JPetStore用户管理分析
JPetStore将登陆后的用户ActionForm保持于Session作用域中,在页面中判断该ActionForm中的用户信息,实现了简单的用户验证。
Ø 进入用户管理
<a href="<c:url value="/shop/signonForm.do"/>">
Ø Struts-config.xml配置
<action path="/shop/signonForm"
type="org.springframework.samples.jpetstore.web.struts.DoNothingAction" validate="false">
<forward name="success" path="/WEB-INF/jsp/struts/SignonFrm.jsp"/>
</action>
Ø 进入用户登陆的SignonForm.jsp
… …
<form action="<c:url value="/shop/signon.do"/>" method="POST">
<c:if test="${!empty signonForwardAction}">
<input type="hidden" name="forwardAction"
value="<c:url value="${signonForwardAction}"/>"/>
</c:if>
<td colspan="2">Please enter your username and password.
<td><input type="text" name="username" value="j2ee" /></td>
<td><input type="password" name="password" value="j2ee" /></td>
<td><input type="image" border="0" src="../images/button_submit.gif" name="update"
<a href="<c:url value="/shop/newAccountForm.do"/>">
<img border="0" src="../images/button_register_now.gif" />
</a>
</form>
… …
Ø SignonAction类
i) <action path="/shop/signon"
type="org.springframework.samples.jpetstore.web.struts.SignonAction" name="accountForm" scope="session" validate="false">
<forward name="success" path="/shop/index.do"/>
</action>
ii) <form-bean name="accountForm"
type="org.springframework.samples.jpetstore.web.struts.AccountActionForm"/>
iii) SignonAction
public class SignonAction extends BaseAction {
public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
request.getSession().removeAttribute("workingAccountForm");
request.getSession().removeAttribute("accountForm");
//如果用户注销,则清空Session
if (request.getParameter("signoff") != null) {
request.getSession().invalidate();
return mapping.findForward("success");
}
else {
AccountActionForm acctForm = (AccountActionForm) form;
String username = acctForm.getUsername();
String password = acctForm.getPassword();
//用户验证
Account account = getPetStore().getAccount(username, password);
if (account == null) {
request.setAttribute("message", "Invalid username or password. Signon failed.");
return mapping.findForward("failure");
}
else {
String forwardAction = acctForm.getForwardAction();
acctForm = new AccountActionForm();
acctForm.setForwardAction(forwardAction);
acctForm.setAccount(account);
acctForm.getAccount().setPassword(null);
PagedListHolder myList = new PagedListHolder(getPetStore().getProductListByCategory(account.getFavouriteCategoryId()));
myList.setPageSize(4);
acctForm.setMyList(myList);
//用户通过验证后,将ActiongFrom存入Session
request.getSession().setAttribute("accountForm", acctForm);
if (acctForm.getForwardAction() == null || acctForm.getForwardAction().length() < 1) {
return mapping.findForward("success");
}
else {
response.sendRedirect(acctForm.getForwardAction());
return null;
}
}
}
}
}
iv)
<!—查找Session中是否存在accountForm.account对象,以此判断用户是否登陆-->
<c:if test="${!empty accountForm.account}">
<b><i><font size="2" color="BLACK">Welcome
<!—如果已经登陆,显示欢迎信息-->
<c:out value="${accountForm.account.firstName}"/>!</font></i></b>
</c:if>
<!—查找Session中是否存在accountForm.account对象,以此判断用户是否登陆-->
<c:if test="${!empty accountForm.account}" >
<!—如果已经登陆,显示修改用户信息URL-->
<a href="<c:url value="/shop/signon.do?signoff=true"/>">
<img border="0" name="img_signout" src="../images/sign-out.gif" /></a>
<img border="0" src="../images/separator.gif" />
<a href="<c:url value="/shop/editAccountForm.do"/>">
<img border="0" name="img_myaccount" src="../images/my_account.gif" /></a>
</c:if>
v)
<action path="/shop/editAccountForm" type="org.springframework.samples.jpetstore.web.struts.EditAccountFormAction"
name="workingAccountForm" scope="session" validate="false">
<forward name="success" path="/WEB-INF/jsp/struts/EditAccountForm.jsp"/>
</action>
<form-bean name="workingAccountForm" type="org.springframework.samples.jpetstore.web.struts.AccountActionForm"/>
大概看了看,总的来说,JPetStore的应用逻辑还是比较简单,JpetStore的学习和分析也就到此结束。
分享到:
相关推荐
这个例子是一个在线宠物商店,涵盖了用户管理、商品分类、购物车等功能,是学习iBatis的绝佳起点。 **3. iBatis配置** iBatis的核心配置文件(通常为`sqlmapconfig.xml`)包含了数据源、事务管理器以及SQL映射文件...
spring自带的JPetStore,我已经配置好(数据库也配置好,用的是hsqldb),可以直接导 入eclipse中运行。共3个压缩包
《JPetStore-5.0:一个基于iBatis的开源电商示例解析》 JPetStore-5.0是一个著名的开源项目,它基于iBatis数据持久层框架,为开发者提供了一个完整的电子商务应用程序示例。这个项目由Apache Software Foundation...
spring自带的JPetStore,我已经配置好(数据库也配置好,用的是hsqldb),可以直接导入eclipse中运行。共3个压缩包
spring自带的JPetStore,我已经配置好(数据库也配置好,用的是hsqldb),可以直接导 入eclipse中运行。共3个压缩包
克隆git clone https://github.com/domaframework/spring-boot-jpetstore.git跑cd spring-boot-jpetstore./gradlew bootRun使用权http://localhost:8080/编辑IntelliJ IDEA 将此示例导入为Gradle项目。蚀用...
mybatis-spring-boot-jpetstore 该示例是一个基于MyBatis,Spring Boot(Spring MVC,Spring Security)和Thymeleaf的Web应用程序。 这是MyBatis JPetStore示例应用程序( )的另一种实现。 原始应用程序可在...
【jpetstore-3-1-1】是一个开源的电子商务示例应用,它展示了如何使用Java技术栈构建一个在线宠物商店。这个项目以其简洁的架构和对多种数据库的支持而受到关注,尤其适合初学者和开发者了解Java Web应用程序的开发...
使用了mybatis的jpetstore-6
MyBatis学习范例宠物商店jpetstore6 内容为: mybatis-jpetstore-6.0.0-sources.jar mybatis-jpetstore-6.0.0.war 学习MyBatis一定要看的sample。
为了处理用户认证和授权,jpetstore可能集成了Java Authentication and Authorization Service (JAAS),这是一个标准的安全框架,用于管理和控制用户的登录和权限设置。同时,考虑到电子商务应用的安全需求,它可能...
iBATIS_JPetStore-4.0.5 是一个基于Java的开源示例项目,它展示了如何使用iBATIS框架来构建一个完整的电子商务应用程序。iBATIS是一个数据映射框架,它简化了Java应用程序与数据库之间的交互,允许将SQL查询直接嵌入...
标题中的"jpetstore-4.0.3.zip"表明我们正在讨论的是JPetStore的4.0.3版本。 **核心技术栈** 1. **Struts框架**:作为MVC设计模式的实现,Struts负责处理HTTP请求,管理视图和控制逻辑。它将业务逻辑与表示层分离...
3. **JDBC(Java Database Connectivity)**:JDBC是Java访问数据库的标准API,jpetstore会使用它与数据库进行交互,如添加、更新和查询商品信息,以及处理用户订单。 4. **Servlet和JSP(JavaServer Pages)**:在...
在jpetstore4.0中,MySQL存储商品信息、用户数据、订单等所有业务数据。它的特点包括: 1. **高性能**:MySQL设计时考虑了性能优化,能快速处理大量并发查询。 2. **易用性**:MySQL提供了丰富的SQL支持,易于理解...
JPetStore-5.0项目是学习STRUTS2框架的理想实践案例,它展示了STRUTS2如何处理Web请求、管理业务逻辑以及呈现视图。通过研究这个项目,开发者可以深入了解STRUTS2的架构设计、拦截器机制以及MVC模式在实际应用中的...
**3. MVC工作流程** - 用户发起HTTP请求,请求到达Struts的ActionServlet。 - ActionServlet根据struts-config.xml中的配置信息,决定调用哪个Action类来处理请求。 - Action类执行相应的业务逻辑,可能涉及到与...