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

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

Springboot+Vue實(shí)現(xiàn)前后端分離校園二手交易平臺(tái)

2022-09-29 16:51 作者:指南針畢業(yè)設(shè)計(jì)  | 我要投稿


項(xiàng)目編號(hào):BS-PT-066

一,項(xiàng)目簡(jiǎn)介

本項(xiàng)目基于springboot+vue實(shí)現(xiàn)了一個(gè)前后端分離模式的校園二手交易平臺(tái)。校內(nèi)師生可以在此平臺(tái)上注冊(cè)自己的賬戶,然后發(fā)布自己想要處理的二手物品,平臺(tái)本身不實(shí)現(xiàn)在線交易功能,發(fā)布的二手物品由買賣雙方自行聯(lián)系進(jìn)行線下交易。主要實(shí)現(xiàn)的功能有用戶注冊(cè)、登陸、發(fā)布商品、收藏商品、統(tǒng)計(jì)瀏覽量和收藏量、在線留言、全文檢索、管理個(gè)人發(fā)布的商品和留言等功能。系統(tǒng)功能完整,業(yè)務(wù)模式清晰,開發(fā)結(jié)構(gòu)簡(jiǎn)單,比較符合目前后端分離模式開發(fā)的主流訴求,可以用作畢業(yè)設(shè)計(jì)或課程設(shè)計(jì)以及期未作業(yè)使用。

二,環(huán)境介紹

語言環(huán)境:Java:? jdk1.8

數(shù)據(jù)庫:Mysql: mysql5.7?? REDIS緩存數(shù)據(jù)庫

應(yīng)用服務(wù)器:Tomcat:? tomcat8.5.31

開發(fā)工具:IDEA或eclipse

后臺(tái)開發(fā)技術(shù):springboot+mybatisplus+jdk8+mysql5.6

前后臺(tái)開發(fā)技術(shù):VUE+ElementsUI

三,系統(tǒng)展示


編輯


用戶登陸注冊(cè)

編輯

編輯


發(fā)布二手物品

編輯


查看詳情

編輯


查看我的收藏

編輯


查看我發(fā)布的商品:可以進(jìn)行商品上下架 和刪除操作

編輯



管理我發(fā)布的留言

編輯


四,核心代碼展示

package cn.fleamarket.controller;import cn.fleamarket.common.R;import cn.fleamarket.domain.Favorites;import cn.fleamarket.domain.User;import cn.fleamarket.service.FavoritesService;import cn.fleamarket.service.UserService;import cn.fleamarket.utils.StringTool;import com.alibaba.fastjson.JSONObject;import com.baomidou.mybatisplus.extension.plugins.pagination.Page;import io.swagger.annotations.ApiOperation;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.PostMapping;import org.springframework.web.bind.annotation.RequestBody;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import java.util.*;import java.util.concurrent.ConcurrentHashMap;import java.util.function.Function;import java.util.function.Predicate;import java.util.stream.Collectors;/** * 產(chǎn)品收藏表 * * @author znz * @date 2022-09-12 10:46:22 */@RestController@RequestMapping("/favorites")public class FavoritesController { ? ?@Autowired ? ?private FavoritesService favoritesService; ? ?@Autowired ? ?UserService userService; ? ?@PostMapping(value = "/favoriteList", produces = "application/json") ? ?@ApiOperation("收藏分頁查詢列表,入?yún)⑹莗age:第幾頁,number:每頁幾條") ? ?public R<List<Favorites>> favoritesList(@RequestBody Map<String,Object> params) { ? ? ? ?if (Objects.isNull(params)) { ? ? ? ? ? ?return R.error("參數(shù)錯(cuò)誤!"); ? ? ? ?} ? ? ? ?User nowUser = userService.qureyByUserName(params.getOrDefault("username","").toString()); ? ? ? ?if (Objects.isNull(nowUser)) { ? ? ? ? ? ?return R.error("用戶未登錄!"); ? ? ? ?} ? ? ? ?params.put("userId",nowUser.getId()); ? ? ? ?Page<Favorites> favoritesPage = favoritesService.selectListPage(params); ? ? ? ?List<Favorites> data = favoritesPage ? ? ? ? ? ? ? ?.getRecords().stream() ? ? ? ? ? ? ? ?.filter(distinctByKey(Favorites::getProductId)) ? ? ? ? ? ? ? ?.collect(Collectors.toList()); ? ? ? ?return R.pageBuild(favoritesPage.getTotal(), ? ? ? ? ? ? ? ?favoritesPage.hasNext(), ? ? ? ? ? ? ? ?favoritesPage.hasPrevious(), data); ? ?} ? ?@PostMapping(value = "/addFavorites", produces = "application/json") ? ?@ApiOperation("添加收藏,pid:商品id") ? ?public JSONObject addFavorites(@RequestBody JSONObject jsonObject, HttpServletRequest request, HttpServletResponse response) { ? ? ? ?JSONObject ret = new JSONObject(); ? ? ? ?User user = null; ? ? ? ?try { ? ? ? ? ? ?user = ?userService.qureyByUserName(jsonObject.getString("username")); ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?e.printStackTrace(); ? ? ? ?} ? ? ? ?try { ? ? ? ? ? ?List<Favorites> list = favoritesService.selectByUid(user.getId()); ? ? ? ? ? ?if (list.size() != 0) { ? ? ? ? ? ? ? ?for (int i = 0; i < list.size(); i++) { ? ? ? ? ? ? ? ? ? ?if (list.get(i).getProductId().equals(jsonObject.getString("pid"))) { ? ? ? ? ? ? ? ? ? ? ? ?ret.put("code", -1); ? ? ? ? ? ? ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ? ? ? ? ? ? ?ret.put("msg", "添加失敗"); ? ? ? ? ? ? ? ? ? ? ? ?return ret; ? ? ? ? ? ? ? ? ? ?} ? ? ? ? ? ? ? ?} ? ? ? ? ? ?} ? ? ? ? ? ?if (user != null) { ? ? ? ? ? ? ? ?String productId = jsonObject.getString("pid"); ? ? ? ? ? ? ? ?Integer state = jsonObject.getInteger("state"); ? ? ? ? ? ? ? ?Favorites favorites = new Favorites(); ? ? ? ? ? ? ? ?favorites.setId(StringTool.getUUID()); ? ? ? ? ? ? ? ?favorites.setUserId(user.getId()); ? ? ? ? ? ? ? ?favorites.setProductId(productId); ? ? ? ? ? ? ? ?favorites.setCreateTime(new Date()); ? ? ? ? ? ? ? ?favorites.setState(state); ? ? ? ? ? ? ? ?Integer isS = favoritesService.addFavorites(favorites); ? ? ? ? ? ? ? ?if (isS > 0) { ? ? ? ? ? ? ? ? ? ?ret.put("data", true); ? ? ? ? ? ? ? ? ? ?ret.put("code", 0); ? ? ? ? ? ? ? ? ? ?ret.put("msg", "添加成功"); ? ? ? ? ? ? ? ?} else { ? ? ? ? ? ? ? ? ? ?ret.put("code", -1); ? ? ? ? ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ? ? ? ? ?ret.put("msg", "添加失敗"); ? ? ? ? ? ? ? ?} ? ? ? ? ? ?} else { ? ? ? ? ? ? ? ?ret.put("msg", "用戶未登錄"); ? ? ? ? ? ?} ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?e.printStackTrace(); ? ? ? ? ? ?ret.put("code", -1); ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ?ret.put("msg", "未知錯(cuò)誤"); ? ? ? ?} ? ? ? ?return ret; ? ?} ? ?@PostMapping(value = "/deleteFavorites", produces = "application/json") ? ?@ApiOperation("刪除收藏,fid:收藏id") ? ?public JSONObject deleteFavorites(@RequestBody JSONObject jsonObject, HttpServletRequest request, HttpServletResponse response) { ? ? ? ?JSONObject ret = new JSONObject(); ? ? ? ?User user = null; ? ? ? ?try { ? ? ? ? ? ?user = userService.qureyByUserName(jsonObject.getString("username")); ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?e.printStackTrace(); ? ? ? ?} ? ? ? ?try { ? ? ? ? ? ?if (user != null) { ? ? ? ? ? ? ? ?String fid = jsonObject.getString("fid"); ? ? ? ? ? ? ? ?Integer isS = favoritesService.deleteFavorites(fid); ? ? ? ? ? ? ? ?if (isS > 0) { ? ? ? ? ? ? ? ? ? ?ret.put("code", 0); ? ? ? ? ? ? ? ? ? ?ret.put("data", true); ? ? ? ? ? ? ? ? ? ?ret.put("msg", "刪除成功"); ? ? ? ? ? ? ? ?} ? ? ? ? ? ?} else { ? ? ? ? ? ? ? ?ret.put("msg", "用戶未登錄"); ? ? ? ? ? ?} ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?e.printStackTrace(); ? ? ? ? ? ?ret.put("code", -1); ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ?ret.put("msg", "刪除失敗"); ? ? ? ?} ? ? ? ?return ret; ? ?} ? ?private static <T> Predicate<T> distinctByKey(Function<? super T, ?> keyExtractor) { ? ? ? ?Map<Object, Boolean> seen = new ConcurrentHashMap<>(); ? ? ? ?return t -> seen.putIfAbsent(keyExtractor.apply(t), Boolean.TRUE) == null; ? ?} }


package cn.fleamarket.controller;import cn.fleamarket.common.R;import cn.fleamarket.config.PathConfig;import cn.fleamarket.domain.Image;import cn.fleamarket.service.ImageService;import cn.fleamarket.utils.StringTool;import com.alibaba.fastjson.JSONObject;import io.swagger.annotations.Api;import io.swagger.annotations.ApiOperation;import lombok.SneakyThrows;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.CrossOrigin;import org.springframework.web.bind.annotation.PostMapping;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;import org.springframework.web.multipart.MultipartFile;import java.io.File;import java.util.Objects;/** * 圖片表 * * @author znz * @date 2022-09-12 10:46:22 */@RestController@RequestMapping("/image")@Api("圖片接口")@CrossOriginpublic class ImageController { ? ?@Autowired ? ?ImageService imageService; ? ?@Autowired ? ?private PathConfig pathConfig; ? ?/** ? ? * 上傳img ? ? * ? ? * @param file 文件 ? ? * @return {@link JSONObject} ? ? */ ? ?@SneakyThrows ? ?@PostMapping("/uploadImg") ? ?@ApiOperation("圖片上傳") ? ?public R<String> uploadImg(MultipartFile file) { ? ? ? ?JSONObject ret = new JSONObject(); ? ? ? ?String fileName = file.getOriginalFilename(); ? ? ? ?String newFileName = StringTool.getUUID() + Objects.requireNonNull(fileName).substring(fileName.indexOf(".")); ? ? ? ?Image image = new Image(); ? ? ? ?File file1; ? ? ? ?String os = System.getProperty("os.name"); ? ? ? ?if (os.toLowerCase().startsWith("win")) { ? ? ? ? ? ?file1 = new File(pathConfig.getWinPath(), newFileName); ? ? ? ?} else { ? ? ? ? ? ?file1 = new File(pathConfig.getWinPath(), newFileName); ? ? ? ?} ? ? ? ?if (!file1.exists()) { ? ? ? ? ? ?System.out.println(file1.mkdir()); ? ? ? ?} ? ? ? ?file.transferTo(file1); ? ? ? ?image.setId(StringTool.getUUID()); ? ? ? ?image.setImgUrl(newFileName); ? ? ? ?imageService.insert(image); ? ? ? ?return R.ok(0,"圖片上傳成功",File.separator + "static" + File.separator + "img" + File.separator + image.getImgUrl()); ? ?} }


package cn.fleamarket.controller;import cn.fleamarket.domain.Message;import cn.fleamarket.domain.User;import cn.fleamarket.service.MessageService;import cn.fleamarket.service.UserService;import cn.fleamarket.utils.StringTool;import com.alibaba.fastjson.JSONObject;import com.baomidou.mybatisplus.extension.plugins.pagination.Page;import io.swagger.annotations.Api;import io.swagger.annotations.ApiOperation;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.*;import javax.servlet.http.HttpServletRequest;import java.util.Date;import java.util.HashMap;import java.util.List;import java.util.Map;/** * 留言接口 */@RestController@RequestMapping("/message")@Api("留言接口")public class MessageController { ? ?@Autowired ? ?MessageService messageService; ? ?@Autowired ? ?UserService userService; ? ?@PostMapping(value = "/messageList", produces = "application/json") ? ?@ApiOperation("分頁查詢留言列表,入?yún)⑹莗age:第幾頁,number:每頁幾條,pId:屬于哪個(gè)商品的id") ? ?public JSONObject messageList(@RequestBody JSONObject jsonObject) { ? ? ? ?JSONObject ret = new JSONObject(); ? ? ? ?try { ? ? ? ? ? ?Long page = jsonObject.getLong("page"); ? ? ? ? ? ?Long number = jsonObject.getLong("number"); ? ? ? ? ? ?String pId = jsonObject.getString("pId"); ? ? ? ? ? ?Map<String, Object> map = new HashMap<>(); ? ? ? ? ? ?map.put("page", page); ? ? ? ? ? ?map.put("number", number); ? ? ? ? ? ?map.put("pId", pId); ? ? ? ? ? ?if (page != null && number != null) { ? ? ? ? ? ? ? ?Page<Message> messagePage = messageService.selectListPage(map); ? ? ? ? ? ? ? ?List<Message> messagesList = messagePage.getRecords(); ? ? ? ? ? ? ? ?ret.put("code", 0); ? ? ? ? ? ? ? ?ret.put("data", StringTool.ListToJsonArray(messagesList)); ? ? ? ? ? ? ? ?ret.put("total", messagePage.getTotal());//總數(shù) ? ? ? ? ? ? ? ?ret.put("next", messagePage.hasNext());//下一頁 ? ? ? ? ? ? ? ?ret.put("previous", messagePage.hasPrevious());//上一頁 ? ? ? ? ? ? ? ?ret.put("msg", "查詢成功"); ? ? ? ? ? ?} ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?e.printStackTrace(); ? ? ? ? ? ?ret.put("code", -1); ? ? ? ? ? ?ret.put("data", null); ? ? ? ? ? ?ret.put("msg", "查詢失敗"); ? ? ? ?} ? ? ? ?return ret; ? ?} ? ?@PostMapping("/addMessage") ? ?@ApiOperation("新增留言接口,text:留言內(nèi)容,tid:發(fā)送人(不用填),fid:接受人(填商品id)") ? ?public JSONObject addMessage(@RequestBody JSONObject jsonObject, HttpServletRequest request) { ? ? ? ?JSONObject ret = new JSONObject(); ? ? ? ?Message message = new Message(); ? ? ? ?try { ? ? ? ? ? ?User user = userService.qureyByUserName(jsonObject.getString("username")); ? ? ? ? ? ?message.setTid(user.getId()); ? ? ? ? ? ?message.setTime(new Date()); ? ? ? ? ? ?message.setId(StringTool.getUUID()); ? ? ? ? ? ?message.setFid(jsonObject.getString("fid")); ? ? ? ? ? ?message.setText(jsonObject.getString("text")); ? ? ? ? ? ?if (messageService.addMessage(message) > 0) { ? ? ? ? ? ? ? ?ret.put("code", 0); ? ? ? ? ? ? ? ?ret.put("data", true); ? ? ? ? ? ? ? ?ret.put("msg", "新增留言成功"); ? ? ? ? ? ?} else { ? ? ? ? ? ? ? ?ret.put("code", -1); ? ? ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ? ? ?ret.put("msg", "新增留言失敗"); ? ? ? ? ? ?} ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?e.printStackTrace(); ? ? ? ? ? ?ret.put("code", -1); ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ?ret.put("msg", "新增留言失敗"); ? ? ? ?} ? ? ? ?return ret; ? ?} ? ?@PostMapping(value = "/messageListByUser", produces = "application/json") ? ?@ApiOperation("分頁查詢我的留言,入?yún)⑹莗age:第幾頁,number:每頁幾條") ? ?public JSONObject productListByUser(@RequestBody JSONObject jsonObject, HttpServletRequest request) { ? ? ? ?JSONObject ret = new JSONObject(); ? ? ? ?try { ? ? ? ? ? ?Long page = jsonObject.getLong("page"); ? ? ? ? ? ?Long number = jsonObject.getLong("number"); ? ? ? ? ? ?Map<String, Object> map = new HashMap<>(); ? ? ? ? ? ?User user = userService.qureyByUserName(jsonObject.getString("username")); ? ? ? ? ? ?map.put("page", page); ? ? ? ? ? ?map.put("number", number); ? ? ? ? ? ?map.put("userId", user.getId()); ? ? ? ? ? ?if (page != null && number != null) { ? ? ? ? ? ? ? ?Page<Message> messagePage = messageService.selectListPageByUser(map); ? ? ? ? ? ? ? ?List<Message> messageList = messagePage.getRecords(); ? ? ? ? ? ? ? ?ret.put("code", 0); ? ? ? ? ? ? ? ? ?ret.put("data", StringTool.ListToJsonArray(messageList)); ? ? ? ? ? ? ? ?ret.put("total", messagePage.getTotal());//總數(shù) ? ? ? ? ? ? ? ?ret.put("next", messagePage.hasNext());//下一頁 ? ? ? ? ? ? ? ?ret.put("previous", messagePage.hasPrevious());//上一頁 ? ? ? ? ? ? ? ?ret.put("msg", "查詢成功"); ? ? ? ? ? ?} ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?ret.put("code", -1); ? ? ? ? ? ?ret.put("data", null); ? ? ? ? ? ?ret.put("msg", "查詢失敗"); ? ? ? ? ? ?e.printStackTrace(); ? ? ? ?} ? ? ? ?return ret; ? ?} ? ?@PostMapping("/delete") ? ?@ApiOperation("刪除留言接口,主要傳留言id即可") ? ?public JSONObject delete(@RequestBody JSONObject jsonObject, HttpServletRequest request) { ? ? ? ?JSONObject ret = new JSONObject(); ? ? ? ?String pId = jsonObject.getString("id"); ? ? ? ?User user = null; ? ? ? ?try { ? ? ? ? ? ?user = userService.qureyByUserName(jsonObject.getString("username")); ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?e.printStackTrace(); ? ? ? ?} ? ? ? ?try { ? ? ? ? ? ?int i = messageService.delete(user.getId(), pId); ? ? ? ? ? ?if (i > 0) { ? ? ? ? ? ? ? ?ret.put("code", "0"); ? ? ? ? ? ? ? ?ret.put("data", true); ? ? ? ? ? ? ? ?ret.put("msg", "刪除留言成功"); ? ? ? ? ? ?} else { ? ? ? ? ? ? ? ?ret.put("code", "-1"); ? ? ? ? ? ? ? ?ret.put("data", false) ? ? ? ?; ? ? ? ? ? ? ? ?ret.put("msg", "刪除留言失敗"); ? ? ? ? ? ?} ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?ret.put("code", "-1"); ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ?ret.put("msg", "刪除留言失敗"); ? ? ? ? ? ?e.printStackTrace(); ? ? ? ?} ? ? ? ?return ret; ? ?} }


package cn.fleamarket.controller;import java.util.*;import cn.fleamarket.domain.Product;import cn.fleamarket.domain.User;import cn.fleamarket.service.MessageService;import cn.fleamarket.service.ProductService;import cn.fleamarket.service.UserService;import cn.fleamarket.utils.StringTool;import com.alibaba.fastjson.JSONArray;import com.alibaba.fastjson.JSONObject;import com.baomidou.mybatisplus.extension.plugins.pagination.Page;import io.swagger.annotations.Api;import io.swagger.annotations.ApiOperation;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.*;import javax.servlet.http.HttpServletRequest;/** * 商品表 * * @author znz * @email ${email} * @date 2022-09-12 10:46:22 */@RestController@RequestMapping("/product")@Api("商品接口")public class ProductController { ? ?@Autowired ? ?ProductService productService; ? ?@Autowired ? ?UserService userService; ? ?@Autowired ? ?MessageService messageService; ? ?@PostMapping(value = "/productList", produces = "application/json") ? ?@ApiOperation("分頁查詢列表,入?yún)⑹莗age:第幾頁,number:每頁幾條,key:查詢條件(可選)") ? ?public JSONObject productList(@RequestBody JSONObject jsonObject) { ? ? ? ?JSONObject ret = new JSONObject(); ? ? ? ?try { ? ? ? ? ? ?Long page = jsonObject.getLong("page"); ? ? ? ? ? ?Long number = jsonObject.getLong("number"); ? ? ? ? ? ?String key = jsonObject.getString("key"); ? ? ? ? ? ?JSONArray jsonArray = jsonObject.getJSONArray("pId"); ? ? ? ? ? ?Map<String, Object> map = new HashMap<>(); ? ? ? ? ? ?map.put("page", page); ? ? ? ? ? ?map.put("number", number); ? ? ? ? ? ?map.put("key", key); ? ? ? ? ? ?if (page != null && number != null) { ? ? ? ? ? ? ? ?Page<Product> productPage = productService.selectListPage(map); ? ? ? ? ? ? ? ?List<Product> productList = productPage.getRecords(); ? ? ? ? ? ? ? ?ret.put("code", 0); ? ? ? ? ? ? ? ?ret.put("data", StringTool.ListToJsonArray(productList)); ? ? ? ? ? ? ? ?ret.put("total", productPage.getTotal());//總數(shù) ? ? ? ? ? ? ? ?ret.put("next", productPage.hasNext());//下一頁 ? ? ? ? ? ? ? ?ret.put("previous", productPage.hasPrevious());//上一頁 ? ? ? ? ? ? ? ?ret.put("msg", "查詢成功"); ? ? ? ? ? ? ? ?return ret; ? ? ? ? ? ?} ? ? ? ? ? ?if (jsonArray.size() != 0 && jsonArray != null) { ? ? ? ? ? ? ? ?List<Product> list = new ArrayList<>(); ? ? ? ? ? ? ? ?for (int i = 0; i < jsonArray.size(); i++) { ? ? ? ? ? ? ? ? ? ?Product product = productService.selectById(jsonArray.get(i).toString()); ? ? ? ? ? ? ? ? ? ?list.add(product); ? ? ? ? ? ? ? ?} ? ? ? ? ? ? ? ?ret.put("code", 0); ? ? ? ? ? ? ? ?ret.put("data", StringTool.ListToJsonArray(list)); ? ? ? ? ? ? ? ?ret.put("msg", "查詢成功"); ? ? ? ? ? ? ? ?return ret; ? ? ? ? ? ?} ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?ret.put("code", -1); ? ? ? ? ? ?ret.put("data", null); ? ? ? ? ? ?ret.put("msg", "查詢失敗"); ? ? ? ?} ? ? ? ?return ret; ? ?} ? ?@PostMapping(value = "/productListByUser", produces = "application/json") ? ?@ApiOperation("分頁查詢屬于某個(gè)用戶的商品列表,就是我發(fā)布的商品,入?yún)⑹莗age:第幾頁,number:每頁幾條") ? ?public JSONObject productListByUser(@RequestBody JSONObject jsonObject, HttpServletRequest request) { ? ? ? ?JSONObject ret = new JSONObject(); ? ? ? ?try { ? ? ? ? ? ?Long page = jsonObject.getLong("page"); ? ? ? ? ? ?Long number = jsonObject.getLong("number"); ? ? ? ? ? ?Map<String, Object> map = new HashMap<>(); ? ? ? ? ? ?User user = userService.qureyByUserName(jsonObject.getString("username")); ? ? ? ? ? ?map.put("page", page); ? ? ? ? ? ?map.put("number", number); ? ? ? ? ? ?map.put("userId", user.getId()); ? ? ? ? ? ?if (page != null && number != null) { ? ? ? ? ? ? ? ?Page<Product> productPage = productService.selectListPageByUser(map); ? ? ? ? ? ? ? ?List<Product> productList = productPage.getRecords(); ? ? ? ? ? ? ? ?ret.put("code", 0); ? ? ? ? ? ? ? ?ret.put("data", StringTool.ListToJsonArray(productList)); ? ? ? ? ? ? ? ?ret.put("total", productPage.getTotal());//總數(shù) ? ? ? ? ? ? ? ?ret.put("next", productPage.hasNext());//下一頁 ? ? ? ? ? ? ? ?ret.put("previous", productPage.hasPrevious());//上一頁 ? ? ? ? ? ? ? ?ret.put("msg", "查詢成功"); ? ? ? ? ? ?} ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?ret.put("code", -1); ? ? ? ? ? ?ret.put("data", null); ? ? ? ? ? ?ret.put("msg", "查詢失敗"); ? ? ? ?} ? ? ? ?return ret; ? ?} ? ?@PostMapping(value = "/productListById", produces = "application/json") ? ?@ApiOperation("分頁查詢屬于某個(gè)用戶的商品列表,就是我發(fā)布的商品,入?yún)⑹莗age:第幾頁,number:每頁幾條") ? ?public JSONObject productListById(@RequestBody JSONObject jsonObject, HttpServletRequest request) { ? ? ? ?JSONObject ret = new JSONObject(); ? ? ? ?try { ? ? ? ? ? ?Long page = jsonObject.getLong("page"); ? ? ? ? ? ?Long number = jsonObject.getLong("number"); ? ? ? ? ? ?Object[] pIds = jsonObject.getJSONArray("pId").toArray(); ? ? ? ? ? ?List<Object> list = new ArrayList<Object>(); ? ? ? ? ? ?for (int i = 0; i < pIds.length; i++) { ? ? ? ? ? ? ? ?if (!list.contains(pIds[i])) { ? ? ? ? ? ? ? ? ? ?list.add(pIds[i]); ? ? ? ? ? ? ? ?} ? ? ? ? ? ?} ? ? ? ? ? ?Object[] pIdss = list.toArray(); ? ? ? ? ? ?Map<String, Object> map = new HashMap<>(); ? ? ? ? ? ?map.put("page", page); ? ? ? ? ? ?map.put("number", number); ? ? ? ? ? ?map.put("pId", pIdss); ? ? ? ? ? ?if (page != null && number != null && pIds != null) { ? ? ? ? ? ? ? ?Page<Product> productPage = productService.selectListsPageById(map); ? ? ? ? ? ? ? ?List<Product> productList = productPage.getRecords(); ? ? ? ? ? ? ? ?ret.put("code", 0); ? ? ? ? ? ? ? ?ret.put("data", StringTool.ListToJsonArray(productList)); ? ? ? ? ? ? ? ?ret.put("total", productPage.getTotal());//總數(shù) ? ? ? ? ? ? ? ?ret.put("next", productPage.hasNext());//下一頁 ? ? ? ? ? ? ? ?ret.put("previous", productPage.hasPrevious());//上一頁 ? ? ? ? ? ? ? ?ret.put("msg", "查詢成功"); ? ? ? ? ? ?} ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?ret.put("code", -1); ? ? ? ? ? ?ret.put("data", null); ? ? ? ? ? ?ret.put("msg", "查詢失敗"); ? ? ? ?} ? ? ? ?return ret; ? ?} ? ?@PostMapping(value = "/productListByIds", produces = "application/json") ? ?@ApiOperation("分頁查詢屬于某個(gè)用戶的商品列表,就是我發(fā)布的商品,入?yún)⑹莗age:第幾頁,number:每頁幾條") ? ?public JSONObject productListByIds(@RequestBody JSONObject jsonObject, HttpServletRequest request) { ? ? ? ?JSONObject ret = new JSONObject(); ? ? ? ?try { ? ? ? ? ? ?Object[] pIds = jsonObject.getJSONArray("pId").toArray(); ? ? ? ? ? ?List<Product> productList = new ArrayList<>(); ? ? ? ? ? ?for (int i = 0; i < pIds.length; i++) { ? ? ? ? ? ? ? ?Product product = productService.selectById(pIds[i].toString()); ? ? ? ? ? ? ? ?productList.add(product); ? ? ? ? ? ?} ? ? ? ? ? ?ret.put("code", 0); ? ? ? ? ? ?ret.put("data", StringTool.ListToJsonArray(productList)); ? ? ? ? ? ?ret.put("msg", "查詢成功"); ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?ret.put("code", -1); ? ? ? ? ? ?ret.put("data", null); ? ? ? ? ? ?ret.put("msg", "查詢失敗"); ? ? ? ?} ? ? ? ?return ret; ? ?} ? ?@PutMapping("/addProduct") ? ?@ApiOperation("增加商品,入?yún)⑹且黾拥纳唐沸畔?記得帶上上傳圖片接口返回的url") ? ?public JSONObject addProduct(@RequestBody JSONObject par, HttpServletRequest request) { ? ? ? ?JSONObject ret = new JSONObject(); ? ? ? ?try { ? ? ? ? ? ?Product product = new Product(); ? ? ? ? ? ?product.setId(StringTool.getUUID()); ? ? ? ? ? ?product.setCreateTime(new Date()); ? ? ? ? ? ?product.setBprice(par.getDouble("bprice")); ? ? ? ? ? ?product.setTitle(par.getString("title")); ? ? ? ? ? ?product.setImgUrl(par.getString("imgUrl")); ? ? ? ? ? ?product.setPrice(par.getDouble("price")); ? ? ? ? ? ?product.setContent(par.getString("content")); ? ? ? ? ? ?User user = userService.qureyByUserName(par.getString("username")); ? ? ? ? ? ?product.setUserId(user.getId()); ? ? ? ? ? ?int i = productService.insert(product); ? ? ? ? ? ?if (i > 0) { ? ? ? ? ? ? ? ?ret.put("code", 0); ? ? ? ? ? ? ? ?ret.put("data", true); ? ? ? ? ? ? ? ?ret.put("msg", "增加成功"); ? ? ? ? ? ?} else { ? ? ? ? ? ? ? ?ret.put("code", -1); ? ? ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ? ? ?ret.put("msg", "增加失敗"); ? ? ? ? ? ?} ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?ret.put("code", -1); ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ?ret.put("msg", "增加失敗"); ? ? ? ?} ? ? ? ?return ret; ? ?} ? ?@PutMapping("/update") ? ?@ApiOperation("修改商品信息,傳入要修改的信息,主要是商品id") ? ?public JSONObject update(Product product) { ? ? ? ?JSONObject ret = new JSONObject(); ? ? ? ?product.setCreateTime(new Date()); ? ? ? ?try { ? ? ? ? ? ?if (product.getId() != null && productService.update(product) > 0) { ? ? ? ? ? ? ? ?ret.put("code", "0"); ? ? ? ? ? ? ? ?ret.put("data", true); ? ? ? ? ? ? ? ?ret.put("msg", "修改成功"); ? ? ? ? ? ?} else { ? ? ? ? ? ? ? ?ret.put("code", "-1"); ? ? ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ? ? ?ret.put("msg", "修改失敗"); ? ? ? ? ? ?} ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?ret.put("code", "-1"); ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ?ret.put("msg", "修改失敗"); ? ? ? ? ? ?e.printStackTrace(); ? ? ? ?} ? ? ? ?return ret; ? ?} ? ?@PutMapping("/obtained") ? ?@ApiOperation("上架下架接口,主要傳id即可") ? ?public JSONObject Obtained(@RequestBody JSONObject id) { ? ? ? ?JSONObject ret = new JSONObject(); ? ? ? ?try { ? ? ? ? ? ?String dbId = id.getString("id"); ? ? ? ? ? ?Product product = productService.selectById(dbId); ? ? ? ? ? ?if (product != null && product.getIsShow() == 1) { ? ? ? ? ? ? ? ?productService.updateById(dbId, true); ? ? ? ? ? ? ? ?ret.put("code", "0"); ? ? ? ? ? ? ? ?ret.put("data", true); ? ? ? ? ? ? ? ?ret.put("msg", "下架成功"); ? ? ? ? ? ?} else if (product != null && product.getIsShow() == 0) { ? ? ? ? ? ? ? ?productService.updateById(dbId, false); ? ? ? ? ? ? ? ?ret.put("code", "0"); ? ? ? ? ? ? ? ?ret.put("data", true); ? ? ? ? ? ? ? ?ret.put("msg", "上架成功"); ? ? ? ? ? ?} else { ? ? ? ? ? ? ? ?ret.put("code", "-1"); ? ? ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ? ? ?ret.put("msg", "修改失敗"); ? ? ? ? ? ?} ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?ret.put("code", "-1"); ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ?ret.put("msg", "修改失敗"); ? ? ? ? ? ?e.printStackTrace(); ? ? ? ?} ? ? ? ?return ret; ? ?} ? ?@GetMapping("/selectById") ? ?@ApiOperation("查詢商品詳情,傳id即可,id是個(gè)字符串") ? ?public JSONObject selectById(String id) { ? ? ? ?JSONObject ret = new JSONObject(); ? ? ? ?try { ? ? ? ? ? ?Product product = productService.selectById(id); ? ? ? ? ? ?if (product != null) { ? ? ? ? ? ? ? ?ret.put("code", "0"); ? ? ? ? ? ? ? ?ret.put("data", StringTool.ObjectToJSONObject(product)); ? ? ? ? ? ? ? ?ret.put("msg", "查詢商品詳情成功"); ? ? ? ? ? ?} else { ? ? ? ? ? ? ? ?ret.put("code", "-1"); ? ? ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ? ? ?ret.put("msg", "查詢商品詳情失敗"); ? ? ? ? ? ?} ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?ret.put("code", "-1"); ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ?ret.put("msg", "查詢商品詳情失敗"); ? ? ? ? ? ?e.printStackTrace(); ? ? ? ?} ? ? ? ?return ret; ? ?} ? ?@PutMapping("/addCount") ? ?@ApiOperation("增加瀏覽次數(shù)接口,主要傳id即可,當(dāng)用戶打開商品頁的時(shí)候發(fā)這個(gè)請(qǐng)求") ? ?public JSONObject Increase(@RequestBody JSONObject id) { ? ? ? ?JSONObject ret = new JSONObject(); ? ? ? ?try { ? ? ? ? ? ?String dbId = id.getString("id"); ? ? ? ? ? ?Product product = productService.selectById(dbId); ? ? ? ? ? ?if (product != null) { ? ? ? ? ? ? ? ?productService.updateIncrease(product); ? ? ? ? ? ? ? ?ret.put("code", "0"); ? ? ? ? ? ? ? ?ret.put("data", true); ? ? ? ? ? ? ? ?ret.put("msg", "增加瀏覽次數(shù)成功"); ? ? ? ? ? ?} else { ? ? ? ? ? ? ? ?ret.put("code", "-1"); ? ? ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ? ? ?ret.put("msg", "增加瀏覽次數(shù)失敗"); ? ? ? ? ? ?} ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?ret.put("code", "-1"); ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ?ret.put("msg", "增加瀏覽次數(shù)失敗"); ? ? ? ? ? ?e.printStackTrace(); ? ? ? ?} ? ? ? ?return ret; ? ?} ? ?@PostMapping("/delete") ? ?@ApiOperation("刪除商品接口,主要傳商品id即可") ? ?public JSONObject delete(@RequestBody JSONObject jsonObject, HttpServletRequest request) { ? ? ? ?JSONObject ret = new JSONObject(); ? ? ? ?String pId = jsonObject.getString("id"); ? ? ? ?User user = null; ? ? ? ?try { ? ? ? ? ? ?user = userService.qureyByUserName(jsonObject.getString("username")); ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?e.printStackTrace(); ? ? ? ?} ? ? ? ?try { ? ? ? ? ? ?int i = productService.delete(user.getId(), pId); ? ? ? ? ? ?if (i > 0) { ? ? ? ? ? ? ? ?if(messageService.deletebyFid(pId)>0) { ? ? ? ? ? ? ? ? ? ?ret.put("code", "0"); ? ? ? ? ? ? ? ? ? ?ret.put("data", true); ? ? ? ? ? ? ? ? ? ?ret.put("msg", "刪除商品成功"); ? ? ? ? ? ? ? ?} ? ? ? ? ? ?} else { ? ? ? ? ? ? ? ?ret.put("code", "-1"); ? ? ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ? ? ?ret.put("msg", "刪除商品失敗"); ? ? ? ? ? ?} ? ? ? ?} catch (Exception e) { ? ? ? ? ? ?ret.put("code", "-1"); ? ? ? ? ? ?ret.put("data", false); ? ? ? ? ? ?ret.put("msg", "刪除商品失敗"); ? ? ? ? ? ?e.printStackTrace(); ? ? ? ?} ? ? ? ?return ret; ? ?} }



五,項(xiàng)目總結(jié)


Springboot+Vue實(shí)現(xiàn)前后端分離校園二手交易平臺(tái)的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國家法律
阳泉市| 罗源县| 上虞市| 新乡县| 浑源县| 遂宁市| 项城市| 岳西县| 磐安县| 包头市| 富源县| 资兴市| 房产| 荣成市| 麻城市| 扎赉特旗| 德令哈市| 宁海县| 常山县| 榕江县| 枝江市| 郎溪县| 磐石市| 宁河县| 科技| 大竹县| 大城县| 泰顺县| 凤台县| 大同市| 略阳县| 敦煌市| 桃园县| 青浦区| 连平县| 嫩江县| 道孚县| 黄大仙区| 驻马店市| 南川市| 深泽县|