使用SSM實(shí)現(xiàn)網(wǎng)上購(gòu)物商城系統(tǒng)
?項(xiàng)目編號(hào):BS-SC-007
本項(xiàng)目基于SSM框架( spring+springmvc+mybatis)進(jìn)行開發(fā)實(shí)現(xiàn),數(shù)據(jù)庫(kù)采用MYSQL,開發(fā)工具為IDEA或ECLIPSE均可。系統(tǒng)包含商城前端功能和后端管理功能,前端主要實(shí)現(xiàn)了用戶注冊(cè)、登陸、商品查看、添加購(gòu)物車、生成訂單、模擬支付等功能。后臺(tái)管理功能主要包含用戶管理、產(chǎn)品類型管理、產(chǎn)品管理、訂單管理、銷量統(tǒng)計(jì)等功能。功能完整,運(yùn)行無(wú)誤,適合做畢業(yè)設(shè)計(jì)或課程設(shè)計(jì)使用。
部分功能展示如下:
前臺(tái)首頁(yè):

商品詳情:

購(gòu)物車:

訂單支付

我的訂單

后臺(tái)管理功能界面:

商品管理
商品管理

訂單管理

銷量統(tǒng)計(jì)


以上是展示的系統(tǒng)的部分功能,系統(tǒng)源碼+數(shù)據(jù)庫(kù)+文檔
package com.qst.controller;import com.github.pagehelper.PageHelper;import com.github.pagehelper.PageInfo;import com.qst.beans.*;import com.qst.service.impl.*;import org.apache.commons.io.FileUtils;import org.apache.ibatis.annotations.Param;import org.apache.poi.hssf.usermodel.HSSFRow;import org.apache.poi.hssf.usermodel.HSSFSheet;import org.apache.poi.hssf.usermodel.HSSFWorkbook;import org.aspectj.weaver.ast.Or;import org.springframework.beans.MutablePropertyValues;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.*;import org.springframework.web.multipart.MultipartFile;import org.springframework.web.multipart.MultipartHttpServletRequest;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import java.io.File;import java.io.IOException;import java.io.OutputStream;import java.text.SimpleDateFormat;import java.util.Date;import java.util.List;import java.util.Map;import java.util.Set;public class AdminController { ? ?
? ?private AdminUserServiceImpl adminUserService; ? ?
? ?private CategoryServiceImpl categoryService; ? ?
? ?private CategorySecondServiceImpl secondService; ? ?
? ?private ProductServiceImpl productService; ? ?
? ?private OrderServiceImpl orderService; ? ?
? ?private UserServiceImpl userService; ? ?
? ?public String adminHome(){//到后臺(tái)登錄頁(yè)
? ? ? ?return "admin/index";
? ?} ? ?
? ?public String adminLogin({ ? ? ? ? String username, String password, HttpServletRequest request)AdminUser adminUser = new AdminUser();
? ? ? ?adminUser.setUsername(username);
? ? ? ?adminUser.setPassword(password); ? ? ? ?AdminUser adminBynamePwd = adminUserService.getAdminBynamePwd(adminUser);
? ? ? ?System.out.println(adminBynamePwd==null?"查詢到的用戶信息為空":adminBynamePwd); ? ? ? ?/*登錄成功就到管理頁(yè),否則就回到登錄頁(yè)*/
? ? ? ?if (adminBynamePwd!=null) {
? ? ? ? ? ?request.getSession().setAttribute("enterAdmin",adminBynamePwd); ? ? ? ? ? ?return "/admin/home";
? ? ? ?} ? ? ? ?return "/admin/index";
? ?} ? ?/*------------------以下是管理員對(duì)用戶的操作*/
? ?
? ?public String findAllUserByPage({ Integer page,HttpServletRequest request)//查找商品并分頁(yè)
? ? ? ?PageUtils<User> userPageUtils = new PageUtils<>(); ? ? ? ?int limit = 5;//每頁(yè)的記錄數(shù)
? ? ? ?if (page==null)
? ? ? ? ? ?page = 1;
? ? ? ?PageHelper.startPage(page,limit);
? ? ? ?List<User> userList = userService.findAll();
? ? ? ?PageInfo<User> pageInfo = new PageInfo<>(userList);//得到分頁(yè)信息
? ? ? ?userPageUtils.setPage(page);//當(dāng)前頁(yè)
? ? ? ?userPageUtils.setList(userList);//當(dāng)前頁(yè)的記錄數(shù)
? ? ? ?userPageUtils.setTotalPage(pageInfo.getPages());//所有的頁(yè)數(shù)
? ? ? ?request.setAttribute("userPageUtils", userPageUtils); ? ? ? ?return "/admin/user/list";
? ?} ? ?/*跳轉(zhuǎn)到某商品的編輯頁(yè)面*/
? ?
? ?public String editUser({ ? ? ? ? Integer uid,HttpServletRequest request)/*根據(jù)商品ID獲取某商品*/
? ? ? ?User user = userService.findById(uid);
? ? ? ?request.setAttribute("user",user); ? ? ? ?return "/admin/user/edit";
? ?} ? ?/*保存商品修改信息,并重新上傳*/
? ?
? ?public String updateUser(User user,HttpServletRequest request)throws IOException { ? ? ? ?int save = userService.update(user); ? ? ? ?return "redirect: /admin/adminUser_findAllByPage";
? ?} ? ?/*刪除用戶*/
? ?
? ?public String deleteUser({ ? ? ? ? Integer uid, HttpServletRequest request)/*刪除數(shù)據(jù)庫(kù)中的記錄*/
? ? ? ?int deleteByid = userService.deleteById(uid); ? ? ? ?return "redirect: /admin/adminUser_findAllByPage";
? ?} ? ?/*-------以下是管理員對(duì)一級(jí)分類的操作*/
? ?
? ?public String getAllCategory(HttpServletRequest request){/*查找所有一級(jí)分類*/
? ? ? ?List<Category> categoryList = categoryService.findAll();
? ? ? ?request.setAttribute("cList",categoryList); ? ? ? ?return "admin/category/list";
? ?} ? ?
? ?public String toAddCategory(){
? ? ? ?System.out.println("進(jìn)入添加一級(jí)分類頁(yè)面"); ? ? ? ?return "admin/category/add";
? ?} ? ?/*像數(shù)據(jù)庫(kù)添加一級(jí)分類*/
? ?
? ?public String addCategory(Category category){ ? ? ? ?String cname = category.getCname();
? ? ? ?System.out.println("添加一級(jí)分類:"+cname); ? ? ? ?int i = categoryService.addCategory(category); ? ? ? ?if(i>0){
? ? ? ? ? ?System.out.println("添加"+category+"成功");
? ? ? ?} ? ? ? ?return "redirect: /admin/adminGetAllCate";
? ?} ? ?/*跳轉(zhuǎn)到編輯一級(jí)分類頁(yè)面*/
? ?
? ?public String editCategory({ ? ? ? ? Integer cid,HttpServletRequest request)/*從數(shù)據(jù)庫(kù)中查找到此分類*/
? ? ? ?Category cByid = categoryService.findCByid(cid);
? ? ? ?request.setAttribute("category",cByid); ? ? ? ?return "admin/category/edit";
? ?} ? ?/*更新某一級(jí)分類*/
? ?
? ?public String updateCategory(Category category){ ? ? ? ?int i = categoryService.saveCategory(category);
? ? ? ?System.out.println(category.getCname()+"更新成功:"+i); ? ? ? ?return "redirect: /admin/adminGetAllCate";
? ?} ? ?/*刪除一級(jí)分類*/
? ?
? ?public String deleteCategory({ ? ? ? ? Integer cid)/*刪除一級(jí)分類之前先刪除其下的二級(jí)分類*/
? ? ? ?List<CategorySecond> categorySecondList = categoryService.findCSByCid(cid); ? ? ? ?for (CategorySecond cs:categorySecondList
? ? ? ? ? ? ) {
? ? ? ? ? ?System.out.println("要?jiǎng)h除的二級(jí)分類:"+cs.getCsname()); ? ? ? ? ? ?int i = secondService.deleteById(cs.getCsid());
? ? ? ? ? ?System.out.println("刪除成功與否:"+i);
? ? ? ?} ? ? ? ?/*最后刪除一級(jí)分類*/
? ? ? ?int i = categoryService.deletByid(cid);
? ? ? ?System.out.println("一級(jí)分類刪除成功與否:"+i); ? ? ? ?return "redirect: /admin/adminGetAllCate";
? ?} ? ?/*-------以下是管理員對(duì)二級(jí)分類的操作*/
? ?
? ?public String findCSByPage({ Integer page,HttpServletRequest request)/*查找所有二級(jí)分類并分頁(yè)*/
? ? ? ?PageUtils<CategorySecond> secondPageUtils = new PageUtils<>(); ? ? ? ?//查找所有二級(jí)分類并分頁(yè)
? ? ? ?int limit = 4;//每頁(yè)分頁(yè)記錄數(shù)
? ? ? ?if (page==null)
? ? ? ? ? ?page = 1;
? ? ? ?PageHelper.startPage(page,limit);
? ? ? ?List<CategorySecond> allCS = secondService.findAllCS();
? ? ? ?PageInfo<CategorySecond> pageInfo = new PageInfo<>(allCS);//得到分頁(yè)信息
? ? ? ?secondPageUtils.setPage(page);//當(dāng)前頁(yè)
? ? ? ?secondPageUtils.setList(allCS);//當(dāng)前頁(yè)的記錄
? ? ? ?secondPageUtils.setTotalPage(pageInfo.getPages());//所有頁(yè)數(shù)
? ? ? ?request.setAttribute("secondPageUtils",secondPageUtils); ? ? ? ?return "/admin/categorysecond/list";
? ?} ? ?/*進(jìn)入添加二級(jí)商品類目頁(yè)面*/
? ?
? ?public String toAddCategorySecond(HttpServletRequest request){
? ? ? ?List<Category> categoryList = categoryService.findAll();
? ? ? ?request.setAttribute("categoryList",categoryList); ? ? ? ?return "/admin/categorysecond/add";
? ?} ? ?/*添加二級(jí)商品類目*/
? ?
? ?public String addcategorySecond_save(CategorySecond categorySecond){
? ? ? ?System.out.println("所添加的二級(jí)目錄"+categorySecond); ? ? ? ?int save = secondService.add(categorySecond); ? ? ? ?if (save>0)
? ? ? ? ? ?System.out.println("添加二級(jí)目錄"+categorySecond+"成功"); ? ? ? ?return "redirect: /admin/adminCategorySecond_findAllByPage";
? ?} ? ?/*跳轉(zhuǎn)到編輯二級(jí)分類頁(yè)面*/
? ?
? ?public String editSecondCategory({ ? ? ? ? Integer csid,HttpServletRequest request)/*從數(shù)據(jù)庫(kù)中查找到此分類*/
? ? ? ?CategorySecond categorySecond = secondService.findCSByid(csid);
? ? ? ?List<Category> categoryList = categoryService.findAll();
? ? ? ?request.setAttribute("categoryList", categoryList);
? ? ? ?request.setAttribute("categorySecond",categorySecond); ? ? ? ?return "/admin/categorysecond/edit";
? ?} ? ?/*更新某二級(jí)分類*/
? ?
? ?public String updateSecondCategory(CategorySecond category){
? ? ? secondService.update(category); ? ? ? ?return "redirect: /admin/adminCategorySecond_findAllByPage";
? ?} ? ?/*------------------以下是管理員對(duì)商品的操作*/
? ?
? ?public String findAllProByPage({ Integer page,HttpServletRequest request)//查找商品并分頁(yè)
? ? ? ?PageUtils<Product> productPageUtils = new PageUtils<>(); ? ? ? ?int limit = 5;//每頁(yè)的記錄數(shù)
? ? ? ?if (page==null)
? ? ? ? ? ?page = 1;
? ? ? ?PageHelper.startPage(page,limit);
? ? ? ?List<Product> productList = productService.findAll();
? ? ? ?PageInfo<Product> pageInfo = new PageInfo<>(productList);//得到分頁(yè)信息
? ? ? ?productPageUtils.setPage(page);//當(dāng)前頁(yè)
? ? ? ?productPageUtils.setList(productList);//當(dāng)前頁(yè)的記錄數(shù)
? ? ? ?productPageUtils.setTotalPage(pageInfo.getPages());//所有的頁(yè)數(shù)
? ? ? ?request.setAttribute("productPageUtils", productPageUtils); ? ? ? ?return "/admin/product/list";
? ?} ? ?
? ?public String toAddProduct(HttpServletRequest request){//跳轉(zhuǎn)到添加商品頁(yè)面
? ? ? ?//查找所有的二級(jí)分類
? ? ? ?List<CategorySecond> categorySecondList = secondService.findAllCS();
? ? ? ?request.setAttribute("csList",categorySecondList); ? ? ? ?return "/admin/product/add";
? ?} ? ?/*++++++添加商品++++*/
? ?
? ?public String addProduct(Product product, MultipartFile upload,HttpServletRequest request)throws Exception{
? ? ? ?product.setPdate(new Date());
? ? ? ?product.setIs_hot(0); ? ? ? ?String realPath = request.getServletContext().getRealPath("/products");
? ? ? ?System.out.println(realPath); ? ? ? ?String originalFilename = upload.getOriginalFilename(); ? ? ? ?File diskFile = new File(realPath + "//"+ originalFilename);
? ? ? ?System.out.println("目標(biāo)文件:"+diskFile.getAbsolutePath()); ? ? ? ?//將上傳的實(shí)體文件復(fù)制到指定目錄upload下
? ? ? ?upload.transferTo(diskFile);
? ? ? ?product.setImage("products/"+originalFilename);
? ? ? ?System.out.println("收到的商品:"+product); ? ? ? ?//將信息保存到數(shù)據(jù)庫(kù)
? ? ? ?int save = productService.save(product);
? ? ? ?System.out.println(product.getPname()+"保存是否成功:"+save); ? ? ? ?return "redirect: /admin/adminProduct_findAllByPage";
? ?} ? ?/*刪除產(chǎn)品*/
? ?
? ?public String deleteProduct({ ? ? ? ? Integer pid, HttpServletRequest request)/* 刪除上傳文件圖片*/
? ? ? ?Product product = productService.findById(pid); ? ? ? ?String path = product.getImage(); ? ? ? ?if(path!=null) { ? ? ? ? ? ?String realPath = request.getServletContext().getRealPath("/" + path); ? ? ? ? ? ?File file = new File(realPath);
? ? ? ? ? ?file.delete();
? ? ? ?} ? ? ? ?/*刪除數(shù)據(jù)庫(kù)中的記錄*/
? ? ? ?int deleteByid = productService.deleteByid(pid); ? ? ? ?return "redirect: /admin/adminProduct_findAllByPage";
? ?} ? ?/*跳轉(zhuǎn)到某商品的編輯頁(yè)面*/
? ?
? ?public String editProduct({ ? ? ? ? Integer pid,HttpServletRequest request)/*根據(jù)商品ID獲取某商品*/
? ? ? ?Product product = productService.findById(pid);
? ? ? ?System.out.println(product);
? ? ? ?request.setAttribute("product",product); ? ? ? ?/*所有二級(jí)分類*/
? ? ? ?List<CategorySecond> allCS = secondService.findAllCS();
? ? ? ?request.setAttribute("csList",allCS); ? ? ? ?return "/admin/product/edit";
? ?} ? ?/*保存商品修改信息,并重新上傳*/
? ?
? ?public String updateProduct(Product product, MultipartFile upload,
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?HttpServletRequest request)throws IOException {
? ? ? ?product.setPdate(new Date()); ? ? ? ?if(upload.getSize() >=0){ ? ? ? ? ? ?/*刪除 目錄中的文件,然后重新上傳
? ? ? ? ? ? * 以及更新數(shù)據(jù)庫(kù)中的記錄*/
? ? ? ? ? ?String path = product.getImage(); ? ? ? ? ? ?if (path != null){ ? ? ? ? ? ? ? ?String realPath = request.getServletContext().getRealPath("/" + path); ? ? ? ? ? ? ? ?File file = new File(realPath);
? ? ? ? ? ? ? ?file.delete();
? ? ? ? ? ?} ? ? ? ? ? ?String realPath = request.getServletContext().getRealPath("/products"); ? ? ? ? ? ?String originalFilename = upload.getOriginalFilename(); ? ? ? ? ? ?File diskFile = new File(realPath + "//"+ originalFilename); ? ? ? ? ? ?//將上傳的實(shí)體文件復(fù)制到指定目錄upload下
? ? ? ? ? ?upload.transferTo(diskFile);
? ? ? ? ? ?product.setImage("products/"+originalFilename);
? ? ? ?}
? ? ? ?System.out.println("商品:"+product); ? ? ? ?//將信息保存到數(shù)據(jù)庫(kù)
? ? ? ?int save = productService.update(product); ? ? ? ?return "redirect: /admin/adminProduct_findAllByPage";
? ?} ? ?/*---------------以下是管理員對(duì)訂單的管理,只能修改訂單的狀態(tài)*/
? ?
? ?public String findAllOrderPage({
? ? ? ?PageUtils<Order> orderPageUtils = Integer page, HttpServletRequest request)new PageUtils<>(); ? ? ? ?if (page == null)
? ? ? ? ? ?page = 1;
? ? ? ?PageHelper.startPage(page,5);
? ? ? ?List<Order> allOrder = orderService.getAllOrder();
? ? ? ?PageInfo<Order> pageInfo = new PageInfo<>(allOrder);
? ? ? ?orderPageUtils.setList(allOrder);
? ? ? ?orderPageUtils.setPage(page);
? ? ? ?orderPageUtils.setTotalPage(pageInfo.getPages());
? ? ? ?request.setAttribute("orderPageUtils",orderPageUtils); ? ? ? ?return "/admin/order/list";
? ?} ? ?/*根據(jù)訂單編號(hào)查找訂單項(xiàng)*/
? ?
? ?
? ?public List<OrderItem> findItemsById({
? ? ? ?System.out.println( Order order, HttpServletRequest request)"所需查找的訂單項(xiàng)ID:"+order.getOid());
? ? ? ?List<OrderItem> orderItemSet = orderService.findByOid(order.getOid()); ? ? ? ?for (OrderItem orderitem: orderItemSet
? ? ? ? ? ? ) {
? ? ? ? ? ?System.out.println(orderitem);
? ? ? ?}// ? ? ? ?request.setAttribute("orderItems",orderItemSet);// ? ? ? ?return "/admin/order/orderItem";
? ? ? ?return orderItemSet;
? ?} ? ?
? ?public void exportProductInfo(HttpServletResponse response)throws IOException{
? ? ? ?response.setCharacterEncoding("UTF-8");
? ? ? ?List<Product> productList = productService.findAll();
? ? ? ?System.out.println(productList); ? ? ? ?/*創(chuàng)建excel文件*/
? ? ? ?//創(chuàng)建excel文件
? ? ? ?HSSFWorkbook wb = new HSSFWorkbook(); ? ? ? ?//創(chuàng)建sheet頁(yè)
? ? ? ?HSSFSheet sheet = wb.createSheet("商品信息表"); ? ? ? ?//創(chuàng)建標(biāo)題行
? ? ? ?HSSFRow titleRow = sheet.createRow(0);
? ? ? ?titleRow.createCell(0).setCellValue("商品名稱");
? ? ? ?titleRow.createCell(1).setCellValue("平臺(tái)價(jià)格");
? ? ? ?titleRow.createCell(2).setCellValue("市場(chǎng)價(jià)格");
? ? ? ?titleRow.createCell(3).setCellValue("圖片目錄");
? ? ? ?titleRow.createCell(4).setCellValue("商品廣告詞");
? ? ? ?titleRow.createCell(5).setCellValue("銷售量");
? ? ? ?titleRow.createCell(6).setCellValue("添加日期");
? ? ? ?titleRow.createCell(7).setCellValue("所屬目錄"); ? ? ? ?for(Product product : productList){ ? ? ? ? ? ?HSSFRow dataRow = sheet.createRow(sheet.getLastRowNum()+1);
? ? ? ? ? ?dataRow.createCell(0).setCellValue(product.getPname());
? ? ? ? ? ?dataRow.createCell(1).setCellValue(product.getShop_price());
? ? ? ? ? ?dataRow.createCell(2).setCellValue(product.getMarket_price());
? ? ? ? ? ?dataRow.createCell(3).setCellValue(product.getImage());
? ? ? ? ? ?dataRow.createCell(4).setCellValue(product.getIs_hot());
? ? ? ? ? ?dataRow.createCell(5).setCellValue(product.getPdesc());
? ? ? ? ? ?dataRow.createCell(6).setCellValue(product.getPdate());
? ? ? ? ? ?dataRow.createCell(7).setCellValue(product.getCsid());
? ? ? ?} ? ? ? ?// 設(shè)置下載時(shí)客戶端Excel的名稱
? ? ? ?String filename =new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()) + ".xls";
? ? ? ?response.setContentType("application/vnd.ms-excel");
? ? ? ?response.setHeader("Content-disposition", "attachment;filename=" + filename); ? ? ? ?OutputStream ouputStream = response.getOutputStream();
? ? ? ?wb.write(ouputStream);
? ? ? ?ouputStream.flush();
? ? ? ?ouputStream.close();
? ?}
}
package com.qst.controller;import com.qst.beans.User;import com.qst.service.impl.UserServiceImpl;import com.qst.util.CreateYanZhen;import com.qst.util.EmailUtils;import com.qst.util.MD5Encoding;import com.qst.util.RandomNum;import com.sun.deploy.net.HttpResponse;import org.apache.ibatis.annotations.Param;//import org.apache.struts2.ServletActionContext;//import org.apache.tools.ant.types.resources.selectors.None;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.http.server.ServletServerHttpResponse;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.*;import org.springframework.web.context.request.RequestContextHolder;import org.springframework.web.context.request.ServletWebRequest;import javax.imageio.ImageIO;import javax.servlet.http.Cookie;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import javax.servlet.http.HttpSession;import java.io.PrintWriter;/**
* 用戶相關(guān)請(qǐng)求控制器
*/public class UserController { ? ?
? ?private UserServiceImpl userService; ? ?
? ?
? ?public String findByName({ String username, HttpServletRequest request)// ? ? ? ?username = request.getParameter("username");
? ? ? ?System.out.println("名稱驗(yàn)證:" + username); ? ? ? ?User existUser = userService.findByName(username);
? ? ? ?System.out.println("existUser:" + existUser);// ? ? ? ?response.setContentType("text/html;charset=utf-8");// ? ? ? ?PrintWriter out = response.getWriter();
? ? ? ?if (existUser != null ) { ? ? ? ? ? ?return "exist";
? ? ? ?} else { ? ? ? ? ? ?return "ok";
? ? ? ?}
? ?} ? ?
? ?public String userLogin(User user, HttpSession session,HttpServletRequest request) { ? ? ? ?String randomcodekey = (String)session.getAttribute("RANDOMVALIDATECODEKEY");
? ? ? ?System.out.println("登錄者:" + user);
? ? ? ?System.out.println("登錄驗(yàn)證碼:"+randomcodekey); ? ? ? ?if(!randomcodekey.equals(user.getCode())){
? ? ? ? ? ?request.setAttribute("msg","驗(yàn)證碼錯(cuò)誤"); ? ? ? ? ? ?return "views/login";
? ? ? ?} ? ? ? ?User enterUser = userService.findByName(user.getUsername()); ? ? ? ?if (enterUser != null) {
? ? ? ? ? ?System.out.println(enterUser.toString()); ? ? ? ? ? ?if (MD5Encoding.getMD5(user.getPassword()).equals(enterUser.getPassword())) {
? ? ? ? ? ? ? ?session.setAttribute("enterUser", enterUser);//將登陸者信息保存到session作用域中
? ? ? ? ? ? ? ?return "redirect: /user_indexPage";
? ? ? ? ? ?}else
? ? ? ? ? ? ? ?request.setAttribute("msg","密碼錯(cuò)誤");
? ? ? ?}else
? ? ? ? ? ?request.setAttribute("msg","賬號(hào)錯(cuò)誤"); ? ? ? ?return "views/login";
? ?} ? ?
? ?public String userRegist(User user,HttpServletRequest request,HttpSession session) {
? ? ? ?System.out.println("注冊(cè)者:" + user); ? ? ? ?int i = 0; ? ? ? ?if (user != null) { ? ? ? ? ? ?String pwd = MD5Encoding.getMD5(user.getPassword());
? ? ? ? ? ?user.setPassword(pwd);
? ? ? ? ? ?i = userService.addUser(user);
? ? ? ?} ? ? ? ?String registCode = "";
? ? ? ?Cookie[] cookies = request.getCookies(); ? ? ? ?for(Cookie cookie : cookies){ ? ? ? ? ? ?if(cookie.getName().equals("registCode")){
? ? ? ? ? ? ? ?registCode = cookie.getValue();
? ? ? ? ? ?}
? ? ? ?}
? ? ? ?System.out.println("發(fā)送的注冊(cè)碼:"+registCode); ? ? ? ?if(registCode==null || !registCode.equals(user.getCode())){
? ? ? ? ? ?request.setAttribute("msg","驗(yàn)證碼錯(cuò)誤"); ? ? ? ? ? ?return "views/regist";
? ? ? ?}
? ? ? ?System.out.println("注冊(cè)是否成功?" + i); ? ? ? ?if (i > 0) { ? ? ? ? ? ?return "views/login";
? ? ? ?} else {
? ? ? ? ? ?request.setAttribute("msg","用戶名已存在"); ? ? ? ? ? ?return "views/regist";
? ? ? ?}
? ?} ? ?/**
? ? * 發(fā)送注冊(cè)驗(yàn)證碼到郵箱
? ? * @param email
? ? * @param request
? ? * @param response
? ? */
? ?
? ?
? ?public String ?sendCodeEmail(String email, HttpServletRequest request, HttpServletResponse response){ ? ? ? ?String registCode = RandomNum.createNumRandom(4);
? ? ? ?EmailUtils.sendEmail(email,"農(nóng)產(chǎn)品推薦平臺(tái)注冊(cè)驗(yàn)證碼",registCode); ? ? ? ?Cookie cookie = new Cookie("registCode", registCode);
? ? ? ?cookie.setMaxAge(3*60);
? ? ? ?response.addCookie(cookie); ? ? ? ?if(registCode!=null){ ? ? ? ? ? ?return "1";
? ? ? ?} ? ? ? ?return "0";
? ?} ? ?
? ?public String logout(HttpSession session) {
? ? ? ?session.invalidate(); ? ? ? ?return "redirect: /user_indexPage";
? ?} ? ?/*驗(yàn)證碼生成*/
? ?
? ?public void setCodeImg(HttpServletRequest request, HttpServletResponse response) throws Exception {
? ? ? ?response.setContentType("image/jpeg");//設(shè)置相應(yīng)類型,告訴瀏覽器輸出的內(nèi)容為圖片
? ? ? ?response.setHeader("Pragma", "No-cache");//設(shè)置響應(yīng)頭信息,告訴瀏覽器不要緩存此內(nèi)容
? ? ? ?response.setHeader("Cache-Control", "no-cache");
? ? ? ?response.setDateHeader("Expire", 0); ? ? ? ?CreateYanZhen randomValidateCode = new CreateYanZhen(); ? ? ? ?try {
? ? ? ? ? ?randomValidateCode.getRandcode(request, response);//輸出驗(yàn)證碼圖片方法
? ? ? ?} catch (Exception e) {
? ? ? ? ? ?e.printStackTrace();
? ? ? ?}
? ?}
}