-
大小: 17.97MB文件類(lèi)型: .zip金幣: 1下載: 0 次發(fā)布日期: 2023-06-19
- 語(yǔ)言: 其他
- 標(biāo)簽: SSH??B2C??購(gòu)物網(wǎng)站??代碼??
資源簡(jiǎn)介
功能:
(1) 后臺(tái)管理員對(duì)商品、訂單等增刪改查
(2) 后臺(tái)用戶(hù)管理
(3) 用戶(hù)注冊(cè),登錄,退出,個(gè)人信息修改,訂單查詢(xún)
(4) 購(gòu)買(mǎi)商品, 搜索商品(模糊搜索)
(5) 用戶(hù)充值
(6) 所有查詢(xún)相關(guān)的頁(yè)面都要實(shí)現(xiàn)分頁(yè)
(7) 實(shí)現(xiàn)購(gòu)物車(chē)功能
(8) 用戶(hù)針對(duì)商品進(jìn)行留言咨詢(xún),管理員可以回答咨詢(xún)(顯示在商品界面)
(9) 查詢(xún)商品的時(shí)候可以篩選排序(按價(jià)格、銷(xiāo)量排序,篩選價(jià)格區(qū)間) 等等
代碼片段和文件信息
package?com.lin.action;
import?javax.servlet.ServletContext;
import?javax.servlet.http.HttpServletRequest;
import?javax.servlet.http.HttpServletResponse;
import?javax.servlet.http.HttpSession;
import?org.apache.struts2.interceptor.ServletRequestAware;
import?org.apache.struts2.interceptor.ServletResponseAware;
import?org.apache.struts2.util.ServletContextAware;
import?org.springframework.beans.factory.annotation.Autowired;
import?com.lin.service.AdminService;
import?com.lin.service.CustomerService;
import?com.lin.service.ShopService;
import?com.opensymphony.xwork2.ActionSupport;
public?class?baseAction?extends?ActionSupport?implements?ServletRequestAware
ServletResponseAware?ServletContextAware?{
private?static?final?long?serialVersionUID?=?1L;
//常用結(jié)果集
public?static?final?String?LIST?=?“l(fā)ist“;
public?static?final?String?MODIFY?=?“modify“;
public?static?final?String?MODIFY_SUCCESS?=?“modify_success“;
public?static?final?String?ADD?=?“add“;
public?static?final?String?ADD_SUCCESS?=?“add_success“;
public?static?final?String?SELECT?=?“select“;
public?static?final?String?QUERY?=?“query“;
public?static?final?String?INDEX?=?“index“;
public?static?final?String?MAIN?=?“main“;
public?static?final?String?MANAGER?=?“manager“;
public?static?final?String?REGIST?=?“regist“;
public?static?final?String?MANAGER_LOGIN?=?“managerLogin“;
public?static?final?String?CUSTOMER_LOGIN?=?“customerLogin“;
public?static?final?String?LOGOUT?=?“l(fā)ogout“;
/*
?*?注入Service
?*/
@Autowired
protected?AdminService?adminService;
@Autowired
protected?CustomerService?customerService;
@Autowired?
protected?ShopService?shopService;
//context
protected?HttpServletResponse?response;
protected?HttpServletRequest?request;
protected?HttpSession?session;
protected?ServletContext?application;
//分頁(yè)頁(yè)數(shù)和頁(yè)大小?默認(rèn)第一頁(yè)?一頁(yè)8個(gè)結(jié)果
protected?int?pageNo?=?1;
protected?int?pageSize?=?8;
//最大訂單
public?static?final?int?maxOrders?=?50;
//getter?and?setter
public?int?getPageNo()?{
return?pageNo;
}
public?void?setPageNo(int?pageNo)?{
this.pageNo?=?pageNo;
}
public?int?getPageSize()?{
return?pageSize;
}
public?void?setPageSize(int?pageSize)?{
this.pageSize?=?pageSize;
}
@Override
public?void?setServletContext(ServletContext?application)?{
//?TODO?Auto-generated?method?stub
this.application?=?application;
}
@Override
public?void?setServletResponse(HttpServletResponse?response)?{
//?TODO?Auto-generated?method?stub
this.response?=?response;
}
@Override
public?void?setServletRequest(HttpServletRequest?request)?{
//?TODO?Auto-generated?method?stub
this.request?=?request;
this.session?=?this.request.getSession();
}
}
?屬性????????????大小?????日期????時(shí)間???名稱(chēng)
-----------?---------??----------?-----??----
?????目錄???????????0??2016-05-27?19:40??MyShop\
?????文件????????1110??2016-05-27?16:06??MyShop\.classpath
?????目錄???????????0??2016-05-27?19:40??MyShop\.myeclipse\
?????目錄???????????0??2016-05-27?19:40??MyShop\.myeclipse\profiler\
?????文件????????1640??2016-05-25?19:46??MyShop\.myeclipse\profiler\MyShop?on?MyEclipse?Tomcat?7.xm
?????文件????????1181??2016-05-25?19:49??MyShop\.project
?????目錄???????????0??2016-05-27?19:40??MyShop\.settings\
?????文件?????????503??2013-07-10?21:41??MyShop\.settings\.jsdtscope
?????文件??????????80??2016-04-30?13:54??MyShop\.settings\com.genuitec.eclipse.migration.prefs
?????文件??????????75??2016-05-27?18:22??MyShop\.settings\org.eclipse.core.resources.prefs
?????文件?????????364??2013-07-10?21:41??MyShop\.settings\org.eclipse.jdt.core.prefs
?????文件?????????470??2016-05-27?16:06??MyShop\.settings\org.eclipse.wst.common.component
?????文件?????????348??2016-04-30?13:54??MyShop\.settings\org.eclipse.wst.common.project.facet.core.xm
?????文件??????????49??2013-07-10?21:41??MyShop\.settings\org.eclipse.wst.jsdt.ui.superType.container
?????文件???????????6??2013-07-10?21:41??MyShop\.settings\org.eclipse.wst.jsdt.ui.superType.name
?????目錄???????????0??2016-05-27?19:40??MyShop\WebContent\
?????目錄???????????0??2016-05-27?19:40??MyShop\WebContent\me
?????文件??????????39??2013-07-10?21:41??MyShop\WebContent\me
?????目錄???????????0??2016-05-27?19:40??MyShop\WebContent\WEB-INF\
?????目錄???????????0??2016-05-27?19:40??MyShop\WebContent\WEB-INF\classes\
?????文件????????5402??2016-05-25?21:48??MyShop\WebContent\WEB-INF\classes\applicationContext.xm
?????目錄???????????0??2016-05-27?19:40??MyShop\WebContent\WEB-INF\classes\com\
?????目錄???????????0??2016-05-27?19:40??MyShop\WebContent\WEB-INF\classes\com\lin\
?????目錄???????????0??2016-05-27?19:40??MyShop\WebContent\WEB-INF\classes\com\lin\action\
?????文件????????2671??2016-05-27?19:40??MyShop\WebContent\WEB-INF\classes\com\lin\action\ba
?????文件????????1779??2016-05-27?19:40??MyShop\WebContent\WEB-INF\classes\com\lin\action\HomeAction.class
?????目錄???????????0??2016-05-27?19:40??MyShop\WebContent\WEB-INF\classes\com\lin\action\consultation\
?????文件????????2691??2016-05-27?19:40??MyShop\WebContent\WEB-INF\classes\com\lin\action\consultation\ConsultationAction.class
?????目錄???????????0??2016-05-27?19:40??MyShop\WebContent\WEB-INF\classes\com\lin\action\customers\
?????文件????????2413??2016-05-27?19:40??MyShop\WebContent\WEB-INF\classes\com\lin\action\customers\CartAction.class
?????文件????????2234??2016-05-22?17:21??MyShop\WebContent\WEB-INF\classes\com\lin\action\customers\CustomerAction-customer_save-validation.xm
............此處省略435個(gè)文件信息
評(píng)論
共有 條評(píng)論