Springboot+Vue實(shí)現(xiàn)前后端分離校園二手交易平臺(tái)
項(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
*/public class FavoritesController { ? ?
? ?private FavoritesService favoritesService; ? ?
? ?UserService userService; ? ?
? ?
? ?public R<List<Favorites>> favoritesList( { ? ? ? ? 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);
? ?} ? ?
? ?
? ?public JSONObject addFavorites( { ? ? ? ? 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;
? ?} ? ?
? ?
? ?public JSONObject deleteFavorites( { ? ? ? ? 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
*/public class ImageController { ? ?
? ?ImageService imageService; ? ?
? ?private PathConfig pathConfig; ? ?/**
? ? * 上傳img
? ? *
? ? * @param file 文件
? ? * @return {@link JSONObject}
? ? */
? ?
? ?
? ?
? ?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;/**
* 留言接口
*/public class MessageController { ? ?
? ?MessageService messageService; ? ?
? ?UserService userService; ? ?
? ?
? ?public JSONObject messageList( { ? ? ? ? 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;
? ?} ? ?
? ?
? ?public JSONObject addMessage( { ? ? ? ? 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;
? ?} ? ?
? ?
? ?public JSONObject productListByUser( { ? ? ? ? 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;
? ?} ? ?
? ?
? ?public JSONObject delete( { ? ? ? ? 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
*/public class ProductController { ? ?
? ?ProductService productService; ? ?
? ?UserService userService; ? ?
? ?MessageService messageService; ? ?
? ?
? ?public JSONObject productList( { ? ? ? ? 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;
? ?} ? ?
? ?
? ?public JSONObject productListByUser( { ? ? ? ? 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;
? ?} ? ?
? ?
? ?public JSONObject productListById( { ? ? ? ? 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;
? ?} ? ?
? ?
? ?public JSONObject productListByIds( { ? ? ? ? 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;
? ?} ? ?
? ?
? ?public JSONObject addProduct( { ? ? ? ? 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;
? ?} ? ?
? ?
? ?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;
? ?} ? ?
? ?
? ?public JSONObject Obtained( { ? ? ? ? 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;
? ?} ? ?
? ?
? ?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;
? ?} ? ?
? ?
? ?public JSONObject Increase( { ? ? ? ? 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;
? ?} ? ?
? ?
? ?public JSONObject delete( { ? ? ? ? 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;
? ?}
}