云存儲(chǔ)注冊(cè)功能_第1頁
云存儲(chǔ)注冊(cè)功能_第2頁
云存儲(chǔ)注冊(cè)功能_第3頁
云存儲(chǔ)注冊(cè)功能_第4頁
云存儲(chǔ)注冊(cè)功能_第5頁
已閱讀5頁,還剩13頁未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡介

云存儲(chǔ)注冊(cè)功能目錄功能描述實(shí)現(xiàn)步驟功能流程圖功能測試2功能描述3網(wǎng)盤注冊(cè)頁面1功能流程圖4StorageControllerregeister()UserService調(diào)用getUserByName()User是否為null提示登錄用戶名不對(duì),返回index.html提示登錄密碼用戶名不對(duì),返回index.htmlPassword是否匹配main.jsp是否否是5實(shí)現(xiàn)步驟控制層UserController.java在cn/edu/sict/cloud/storage/web/UserController.java添加如下代碼@RequestMapping("/regeister")@ResponseBodypublicObjectregeister(HttpServletRequestrequest, HttpServletResponseresponse,Stringusername, Stringrealname,Stringemail,Stringpassword){ Useruser=userService.getUserByname(username); if(user!=null){ return

newMessageBean(false,Constants.ERROR_3); }6實(shí)現(xiàn)步驟控制層UserController.java在cn/edu/sict/cloud/storage/web/UserController.java添加如下代碼user=userService.save(username,realname,email,password);setSessionUser(request,user);//新建用戶對(duì)應(yīng)云平臺(tái)的container,garbageif(storage

instanceofSwiftStorageService){ ((SwiftStorageService)storage).createContainer(username);}return

newMessageBean(true,Constants.SUCCESS_2);}7實(shí)現(xiàn)步驟服務(wù)層UserController.java在cn/edu/sict/cloud/storage/service/UserService.java添加如下代碼@AutowiredprivateUserDaouserDao;//依賴注入publicUsergetUserByname(Stringusername){ return

userDao.getUserByname(username);}publicUsergetUserByid(int

id){ return

userDao.getUserByid(id);}8實(shí)現(xiàn)步驟服務(wù)層UserService.javapublicUsersave(Stringusername,Stringrealname, Stringemail,Stringpassword){ Useruser=newUser(); user.setEmail(email); MD5md5=newMD5(); user.setPassword(md5.getMD5ofStr(password)); user.setUsername(username); user.setRealname(realname); user.setJoindate(UtilTools.timeTostrHMS(newDate())); user.setLastdate(UtilTools.timeTostrHMS(newDate())); userDao.save(user); return

user;}9實(shí)現(xiàn)步驟服務(wù)層SwiftDFS.javacn/edu/sict/cloud/storage/sh/SwiftDFS.javapublic

booleancreateContainer(StringrootPath){List<?extendsSwiftContainer>containers=os.objectStorage().containers() .list(ContainerListOptions.create().startsWith(rootPath));if(containers.isEmpty()){ os.objectStorage().containers().create(rootPath); return

true;}else{ for(SwiftContainercontainer:containers){ if(!rootPath.equals(container.getName())){ os.objectStorage().containers().create(rootPath); return

true; }}}return

false;}10實(shí)現(xiàn)步驟服務(wù)層SwiftDFS.javaprivateMap<String,String>getSplitPath(Stringpath){ String[]strPath=path.split("/"); StringrootPath="";path=""; for(int

i=0;i<strPath.length;i++){ if(i==0){rootPath=strPath[0];}

else{ if(i==strPath.length-1){ if(strPath[i].contains(".")){ path+=strPath[i]; }else{path+=strPath[i]+"/";} }else{path+=strPath[i]+"/";} }} Mapmap=newHashMap(); map.put("rootPath",rootPath); map.put("path",path); return

map;}11實(shí)現(xiàn)步驟視圖層在/WebRoot/WEB-INF/jsp文件夾下創(chuàng)建regeister.jsp<aclass="nav-skip"href="#content">跳過本內(nèi)容頁</a><!--view--><divclass="wrapperwrapper-view"><divclass="wrapper-headerwrapper"id="view-top"><header> <h1class="titletitle-1">注冊(cè)</h1> <ahref="index.html"class="actionaction-signin">

如果您已經(jīng)有云存儲(chǔ)賬號(hào),請(qǐng)直接登錄</a></header>12實(shí)現(xiàn)步驟視圖層regeister.jsp<articleclass="content-primary"role="main"><formid="register_form"method="post"><divid="register_error"name="register_error"

class="messagemessage-statusmessage-statuserror"></div><fieldset><legendclass="sr">注冊(cè)考試所需的信息</legend><olclass="list-input"><liclass="fieldtextrequired"id="field-email"> <labelfor="email">電子郵件地址</label>

<inputid="email"type="email"name="email" placeholder="例如:zahngsan@163.com"/></li><liclass="fieldtextrequired"id="field-name"> <labelfor="name">全名</label>

<inputid="name"type="text"name="name"

placeholder="例如:張三"/></li>13實(shí)現(xiàn)步驟視圖層regeister.jsp<liclass="fieldtextrequired"id="field-username"> <labelfor="username">用戶名</label>

<inputid="username"type="text"name="username" placeholder="例如:zhangsan"/>

<spanclass="tiptip-stacked">這將會(huì)被用于登陸云存儲(chǔ)平臺(tái)

</span></li><liclass="fieldtextrequired"id="field-password"> <labelfor="password">密碼</label>

<inputid="password"type="password"name="password"/></li></ol></fieldset>14實(shí)現(xiàn)步驟視圖層regeister.jsp<divclass="form-actions"><buttontype="button"class="actionaction-primary" onclick="tregeister();">創(chuàng)建我的賬號(hào)&開始創(chuàng)建</button></div><inputname="honor_code"type="checkbox"

value="true"checked="true"hidden="true"></form></article></div>15實(shí)現(xiàn)步驟視圖層regeister.jsp<scriptsrc="assets/javascripts/jquery.min.js"></script><scriptsrc="assets/javascripts/index.js"></script><script>functiontregeister(){//注冊(cè) varemail=$("#email").val(); varpassword=$("#password").val();

varusername=$("#username").val();

varname=$("#name").val(); vardata={ username:username, realname:name, email

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

評(píng)論

0/150

提交評(píng)論