秒殺系統web層設計的實現方法
一、restful接口設計
使用資源+名詞的方式來為url鏈接命名。例如:
訪問詳情頁的鏈接可以是: seckill/{seckillid}/detail
二、springmvc配置
1、首先要在web.xml中配置中央控制器。
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1" metadata-complete="true"> <!-- 修改servlet版本為3.1 --> <!-- 配置中央控制器dispatcherservlet --> <servlet> <servlet-name>seckill-dispatcher</servlet-name> <servlet-class>org.springframework.web.servlet.dispatcherservlet</servlet-class> <!-- 配置springmvc需要加載的配置文件 spring-dao.xml,spring-service.xml,spring-web.xml mybatis -> spring -> springmvc--> <init-param> <param-name>contextconfiglocation</param-name> <param-value>classpath:spring/spring-*.xml</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>seckill-dispatcher</servlet-name> <!-- 默認匹配所有的請求 --> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
2、為了讓spring管理controller層的bean,需要新建一個spring-web.xml配置文件,
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:conext="http://www.springframework.org/schema/context" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">
<!--配置spring mvc-->
<!--開啟springmvc注解模式-->
<!--簡化配置
1、自動注冊defaultannotationhandlermapping,annotationmethodhandleradapter
2、提供一系列功能:數據綁定,數字和日期的轉化@numberformat,@datatimeformat
xml,json默認讀寫支持
-->
<mvc:annotation-driven> <!--servlet-mapping映射路徑-->
<!--靜態資源默認servlet配置
1、加入對靜態資源的處理:js,css,img
2、允許使用/做整體映射
-->
<mvc:default-servlet-handler> <!--配置jsp顯示viewresolver-->
<bean class="org.springframework.web.servlet.view.internalresourceviewresolver"> <property name="viewclass" value="org.springframework.web.servlet.view.jstlview"> <property name="prefix" value="/web-inf/jsp/"> <property name="suffix" value=".jsp"> </property></property></property></bean> <!--掃描web相關的bean-->
<conext:component-scan base-package="org.seckill.web"> </conext:component-scan></mvc:default-servlet-handler></mvc:annotation-driven></beans>
三、controller層開發
項目中的每一個url都剛好對應著controller層的一個方法。我們有兩種返回值類型。一種是讓頁面跳轉到某個網頁,在model中帶上從service層中獲得的數據。在下例中,前端的detail.jsp就能夠以${seckill.name}取得放在model中的sekill實體的名字。
/** * 秒殺詳情頁 * * @param seckillid * @param model * @return */ @requestmapping(value = "/{seckillid}/detail", method = requestmethod.get) public string detail(@pathvariable("seckillid") long seckillid, model model) { if (seckillid == null) { return "redirect:/seckill/list"; } seckill seckill = seckillservice.getbyid(seckillid); if (seckill == null) { return "forward:/seckill/list"; } model.addattribute("seckill", seckill); return "detail"; }
另外一種是jsp頁面中點擊某個按鈕,通過ajax來刷新頁面的某部分,需要后端給前端一個json格式的數據。使用@responsebody告訴springmvc返回一個json類型的數據seckillresult。由jsp頁面在jqeury的回調函數內拿到該json數據,并進行對應的操作。
@requestmapping(value = "/{seckillid}/exposer", method = requestmethod.post, produces = {"application/json;charset=utf-8" }) @responsebody public seckillresult exposer(@pathvariable long seckillid) { seckillresult result; try { exposer exposer = seckillservice.exportseckillurl(seckillid); result = new seckillresult(true, exposer); } catch (exception e) { logger.error(e.getmessage(), e); result = new seckillresult(false, e.getmessage()); } return result; }
js代碼中回調函數的處理方式:
$.post(seckill.url.exposer(seckillid),{},function(result){ //在回調函數中,執行交互流程 if(result && result['success']){ var exposer = result['data']; if(exposer['exposed']){ //開啟秒殺 //獲取秒殺地址 var md5 = exposer['md5']; //綁定一次點擊事件,防止連續點擊 var killurl = seckill.url.execution(seckillid,md5); console.log("秒殺地址:"+killurl); });
四、請求方法的細節處理
1、請求參數的綁定
@requestmapping(value = “/{seckillid}/exposer” public seckillresult exposer(@pathvariable long seckillid)
2、請求方式的限制
@requestmapping(method = requestmethod.post,
3、請求轉發、請求重定向
return “redirect:/seckill/list”;(發送兩次請求,瀏覽器地址改變) return “forward:/seckill/list”;(發送一次請求,瀏覽器地址不變)
4、數據模型賦值
model.addattribute(“seckill”, seckill);
5、返回json數據
@requestmapping(value = “/{seckillid}/exposer”, method = requestmethod.post, produces = {“application/json;charset=utf-8” }) @responsebody
6、cookies訪問
@requestmapping(value = "/{seckillid}/{md5}/execution", method = requestmethod.post, produces = {"application/json;charset=utf-8"}) @responsebody public seckillresult execute(@pathvariable("seckillid") long seckillid, @pathvariable("md5") string md5, @cookievalue(value = "killphone", required = false) long phone) {...}
@cookievalue(value = “killphone”, required = false) long phone)
(1)value(default “”):參數名例如: jsessionid
(2)required(default true):是否請求路頭中必須帶value指定的參數。如果沒有設置cookies我們這個業務也要能夠訪問并讓用戶填寫相應信息,所以設為false即可。
五、其他
其實課程的這一部分在前端js交互中有很多值得學習的地方,比如jquery的使用,js模塊化開發,js交互設計等內容。因為時間關系以及復習側重點不在js部分的原因,我就暫時不去做總結。
- jsp+servlet實現文件上傳與下載功能
- EJB3.0部署消息驅動Bean拋javax.naming.NameNotFoundException異常
- 在JSP中使用formatNumber控制要顯示的小數位數方法
- 秒殺系統Web層設計的實現方法
- 將properties文件的配置設置為整個Web應用的全局變量實現方法
- JSP使用過濾器防止Xss漏洞
- 在JSP頁面中動態生成圖片驗證碼的方法實例
- 詳解JSP 內置對象request常見用法
- 使用IDEA編寫jsp時EL表達式不起作用的問題及解決方法
- jsp實現局部刷新頁面、異步加載頁面的方法
- Jsp中request的3個基礎實踐
- JavaServlet的文件上傳和下載實現方法
- JSP頁面的靜態包含和動態包含使用方法