今天就跟大家聊聊有關怎么在Spring mvc中防止數(shù)據(jù)重復提交,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據(jù)這篇文章可以有所收獲。
創(chuàng)新互聯(lián)建站:從2013年開始為各行業(yè)開拓出企業(yè)自己的“網站建設”服務,為上千公司企業(yè)提供了專業(yè)的做網站、成都做網站、網頁設計和網站推廣服務, 按需求定制網站由設計師親自精心設計,設計的效果完全按照客戶的要求,并適當?shù)奶岢龊侠淼慕ㄗh,擁有的視覺效果,策劃師分析客戶的同行競爭對手,根據(jù)客戶的實際情況給出合理的網站構架,制作客戶同行業(yè)具有領先地位的。
分析:
這里使用的防止數(shù)據(jù)重復提交的方法是使用token,給所有的url加一個攔截器,在攔截器里面用java的UUID生成一個隨機的UUID并把這個UUID放到session里面,然后在瀏覽器做數(shù)據(jù)提交的時候將此UUID提交到服務器。服務器在接收到此UUID后,檢查一下該UUID是否已經被提交,如果已經被提交,則不讓邏輯繼續(xù)執(zhí)行下去。
源碼實現(xiàn):
注解Token代碼:
@Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface Token { boolean save() default false; boolean remove() default false; }
攔截器TokenInterceptor代碼:
public class TokenInterceptor extends HandlerInterceptorAdapter { @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { if (handler instanceof HandlerMethod) { HandlerMethod handlerMethod = (HandlerMethod) handler; Method method = handlerMethod.getMethod(); Token annotation = method.getAnnotation(Token.class); if (annotation != null) { boolean needSaveSession = annotation.save(); if (needSaveSession) { request.getSession(false).setAttribute("token", UUID.randomUUID().toString()); } boolean needRemoveSession = annotation.remove(); if (needRemoveSession) { if (isRepeatSubmit(request)) { return false; } request.getSession(false).removeAttribute("token"); } } return true; } else { return super.preHandle(request, response, handler); } } private boolean isRepeatSubmit(HttpServletRequest request) { String serverToken = (String) request.getSession(false).getAttribute("token"); if (serverToken == null) { return true; } String clinetToken = request.getParameter("token"); if (clinetToken == null) { return true; } if (!serverToken.equals(clinetToken)) { return true; } return false; } }
Spring MVC的配置文件:
<!-- 攔截器配置 --> <mvc:interceptors> <!-- 配置Token攔截器,防止用戶重復提交數(shù)據(jù) --> <mvc:interceptor> <mvc:mapping path="/**"/> <bean class="com.storezhang.web.spring.TokenInterceptor"/> </mvc:interceptor> </mvc:interceptors>
使用方法:
1、在需要生成token的controller上增加@Token(save=true);
2、而在需要檢查重復提交的controller上添加@Token(remove=true)就可以了。
另外,你需要在view里在form里增加下面代碼:
<input type="hidden" name="token" value="${token}" />
看完上述內容,你們對怎么在Spring mvc中防止數(shù)據(jù)重復提交有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。
文章名稱:怎么在Springmvc中防止數(shù)據(jù)重復提交
文章源于:http://aaarwkj.com/article32/gppopc.html
成都網站建設公司_創(chuàng)新互聯(lián),為您提供虛擬主機、品牌網站設計、網站改版、做網站、搜索引擎優(yōu)化、
聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)