最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

使用SSM實(shí)現(xiàn)網(wǎng)上購(gòu)物商城系統(tǒng)

2022-03-03 11:59 作者:指南針畢業(yè)設(shè)計(jì)  | 我要投稿

?項(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;@Controller@RequestMapping("/admin")public class AdminController { ? ?@Autowired ? ?private AdminUserServiceImpl adminUserService; ? ?@Autowired ? ?private CategoryServiceImpl categoryService; ? ?@Autowired ? ?private CategorySecondServiceImpl secondService; ? ?@Autowired ? ?private ProductServiceImpl productService; ? ?@Autowired ? ?private OrderServiceImpl orderService; ? ?@Autowired ? ?private UserServiceImpl userService; ? ?@RequestMapping("/adminIndex") ? ?public String adminHome(){//到后臺(tái)登錄頁(yè) ? ? ? ?return "admin/index"; ? ?} ? ?@RequestMapping("/adminLogin") ? ?public String adminLogin(@Param("username") String username, @Param("password") 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ì)用戶的操作*/ ? ?@RequestMapping(value = ("/adminUser_findAllByPage") ) ? ?public String findAllUserByPage(@Param("page") 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è)面*/ ? ?@RequestMapping("/adminUser_edit") ? ?public String editUser(@RequestParam("id")Integer uid,HttpServletRequest request){ ? ? ? ?/*根據(jù)商品ID獲取某商品*/ ? ? ? ?User user = userService.findById(uid); ? ? ? ?request.setAttribute("user",user); ? ? ? ?return "/admin/user/edit"; ? ?} ? ?/*保存商品修改信息,并重新上傳*/ ? ?@RequestMapping("/adminUser_update") ? ?public String updateUser(User user,HttpServletRequest request)throws IOException { ? ? ? ?int save = userService.update(user); ? ? ? ?return "redirect: /admin/adminUser_findAllByPage"; ? ?} ? ?/*刪除用戶*/ ? ?@RequestMapping("/adminUser_delete") ? ?public String deleteUser(@Param("id") Integer uid, HttpServletRequest request){ ? ? ? ?/*刪除數(shù)據(jù)庫(kù)中的記錄*/ ? ? ? ?int deleteByid = userService.deleteById(uid); ? ? ? ?return "redirect: /admin/adminUser_findAllByPage"; ? ?} ? ?/*-------以下是管理員對(duì)一級(jí)分類的操作*/ ? ?@RequestMapping("/adminGetAllCate") ? ?public String getAllCategory(HttpServletRequest request){/*查找所有一級(jí)分類*/ ? ? ? ?List<Category> categoryList = categoryService.findAll(); ? ? ? ?request.setAttribute("cList",categoryList); ? ? ? ?return "admin/category/list"; ? ?} ? ?@RequestMapping("/toAddCategory") ? ?public String toAddCategory(){ ? ? ? ?System.out.println("進(jìn)入添加一級(jí)分類頁(yè)面"); ? ? ? ?return "admin/category/add"; ? ?} ? ?/*像數(shù)據(jù)庫(kù)添加一級(jí)分類*/ ? ?@RequestMapping(value="/addCategory_save" ) ? ?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è)面*/ ? ?@RequestMapping("/adminCategory_edit") ? ?public String editCategory(@Param("cid") Integer cid,HttpServletRequest request){ ? ? ? ?/*從數(shù)據(jù)庫(kù)中查找到此分類*/ ? ? ? ?Category cByid = categoryService.findCByid(cid); ? ? ? ?request.setAttribute("category",cByid); ? ? ? ?return "admin/category/edit"; ? ?} ? ?/*更新某一級(jí)分類*/ ? ?@RequestMapping("/adminCategory_update") ? ?public String updateCategory(Category category){ ? ? ? ?int i = categoryService.saveCategory(category); ? ? ? ?System.out.println(category.getCname()+"更新成功:"+i); ? ? ? ?return "redirect: /admin/adminGetAllCate"; ? ?} ? ?/*刪除一級(jí)分類*/ ? ?@RequestMapping(value ="/adminCategory_delete") ? ?public String deleteCategory(@Param("cid") 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í)分類的操作*/ ? ?@RequestMapping("/adminCategorySecond_findAllByPage") ? ?public String findCSByPage(@Param("page") 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è)面*/ ? ?@RequestMapping(value = "toAddCategorySecond") ? ?public String toAddCategorySecond(HttpServletRequest request){ ? ? ? ?List<Category> categoryList = categoryService.findAll(); ? ? ? ?request.setAttribute("categoryList",categoryList); ? ? ? ?return "/admin/categorysecond/add"; ? ?} ? ?/*添加二級(jí)商品類目*/ ? ?@RequestMapping(value = "addcategorySecond_save") ? ?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è)面*/ ? ?@RequestMapping("/adminCategorySecond_edit") ? ?public String editSecondCategory(@Param("csid") 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í)分類*/ ? ?@RequestMapping("/adminSecondCategory_update") ? ?public String updateSecondCategory(CategorySecond category){ ? ? ? secondService.update(category); ? ? ? ?return "redirect: /admin/adminCategorySecond_findAllByPage"; ? ?} ? ?/*------------------以下是管理員對(duì)商品的操作*/ ? ?@RequestMapping(value = ("/adminProduct_findAllByPage") ) ? ?public String findAllProByPage(@Param("page") 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"; ? ?} ? ?@RequestMapping("/toAddProduct") ? ?public String toAddProduct(HttpServletRequest request){//跳轉(zhuǎn)到添加商品頁(yè)面 ? ? ? ?//查找所有的二級(jí)分類 ? ? ? ?List<CategorySecond> categorySecondList = secondService.findAllCS(); ? ? ? ?request.setAttribute("csList",categorySecondList); ? ? ? ?return "/admin/product/add"; ? ?} ? ?/*++++++添加商品++++*/ ? ?@RequestMapping("/addProduct_save") ? ?public String addProduct(Product product,@RequestParam("upload") 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)品*/ ? ?@RequestMapping("/adminProduct_delete") ? ?public String deleteProduct(@Param("pid") 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è)面*/ ? ?@RequestMapping("/adminProduct_edit") ? ?public String editProduct(@RequestParam("pid")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"; ? ?} ? ?/*保存商品修改信息,并重新上傳*/ ? ?@RequestMapping("/adminProduct_update") ? ?public String updateProduct(Product product, @RequestParam("upload")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)*/ ? ?@RequestMapping("/adminOrder_findAllByPage") ? ?public String findAllOrderPage(@Param("page") Integer page, HttpServletRequest request){ ? ? ? ?PageUtils<Order> orderPageUtils = 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)*/ ? ?@RequestMapping(value = "/adminOrderItem_findById") ? ?@ResponseBody ? ?public List<OrderItem> findItemsById(@RequestBody Order order, HttpServletRequest request){ ? ? ? ?System.out.println("所需查找的訂單項(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; ? ?} ? ?@RequestMapping("/export_product_info") ? ?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)求控制器 */@Controllerpublic class UserController { ? ?@Autowired ? ?private UserServiceImpl userService; ? ?@RequestMapping(value = "/user_findByName") ? ?@ResponseBody ? ?public String findByName(@Param("username") 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"; ? ? ? ?} ? ?} ? ?@RequestMapping(value = "/user_login", method = RequestMethod.POST) ? ?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"; ? ?} ? ?@RequestMapping("/user_regist") ? ?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 ? ? */ ? ?@RequestMapping("/send_code_email") ? ?@ResponseBody ? ?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"; ? ?} ? ?@RequestMapping("/user_logout") ? ?public String logout(HttpSession session) { ? ? ? ?session.invalidate(); ? ? ? ?return "redirect: /user_indexPage"; ? ?} ? ?/*驗(yàn)證碼生成*/ ? ?@RequestMapping("/checkImg") ? ?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(); ? ? ? ?} ? ?} }



使用SSM實(shí)現(xiàn)網(wǎng)上購(gòu)物商城系統(tǒng)的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
林州市| 平南县| 临沧市| 辉南县| 上栗县| 鹤山市| 富民县| 武川县| 阿图什市| 祁连县| 宜川县| 五常市| 高邑县| 卓尼县| 共和县| 建湖县| 安新县| 盐源县| 嘉黎县| 台南县| 宝兴县| 静宁县| 芦溪县| 苍梧县| 虹口区| 甘泉县| 徐水县| 太康县| 东丽区| 临武县| 外汇| 林州市| 隆回县| 宽甸| 大余县| 临汾市| 新郑市| 桐梓县| 临泉县| 自贡市| 绍兴县|