小程序二手商城|使用Springboot+vue+微信小程序开发校园二手商城系统

本文主要是介绍小程序二手商城|使用Springboot+vue+微信小程序开发校园二手商城系统,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

作者主页:编程指南针

作者简介:Java领域优质创作者、CSDN博客专家 、CSDN内容合伙人、掘金特邀作者、阿里云博客专家、51CTO特邀作者、多年架构师设计经验、腾讯课堂常驻讲师

主要内容:Java项目、Python项目、前端项目、人工智能与大数据、简历模板、学习资料、面试题库、技术互助

收藏点赞不迷路  关注作者有好处

文末获取源码 

  

 项目编号:BS-XCX-024

一,环境介绍

语言环境:Java:  jdk1.8 

数据库:Mysql: mysql5.7

应用服务器:Tomcat:  tomcat8.5.31

开发工具:IDEA或eclipse+微信开发者工具

开发技术:Springboot+vue+微信小程序

二,项目简介

本项目基于Springboot+vue+微信小程序实现了一个校园二手物品商城交易系统。系统的后台使用springboot+mybatis开发实现,后台管理页面使用Vue+ElementUI开发实现,用户端基于微信小程序开发实现。前端用户使用微信登录小程序后,可以在线浏览二手商品,并在线购买下单和评论等,同时自己也可以发布相应的二手商品,并管理自己的订单信息和销售信息。管理员登录后台管理系统可以管理人员、商品分类、商品、订单等相关信息。具体见下面展示。

三,系统展示

前端小程序

在商品详情里可以和发布人在线发消息交流,在线评论,在线下单交易

商品分类查询

发布二手商品

在线信息交流

个人中心:可以管理自己发布的商品,查看自己的收藏记录,查看自己的订单,查看己销售的订单,查看评论和消息回复等。

后台管理

分类管理

商品管理

其它略

四,核心代码展示

package com.spboot.tx.controller;import cn.hutool.core.bean.BeanUtil;
import cn.hutool.core.util.StrUtil;
import com.spboot.tx.mapper.*;
import com.spboot.tx.pojo.*;
import com.spboot.tx.service.*;
import com.spboot.tx.utils.*;
import io.swagger.annotations.*;
import java.io.*;
import java.util.*;
import javax.annotation.Resource;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.*;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.authentication.AuthenticationManager;
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
import org.springframework.security.core.Authentication;
import org.springframework.web.bind.annotation.*;@Api(tags = { "管理员控制器" })
@RestController
@RequestMapping("/api/admins")
public class AdminsController {@Autowiredpublic AdminsService adminsService;@Autowiredpublic AdminsMapper adminsMapper;@Resourceprivate HttpServletRequest request;@Resourceprivate HttpServletResponse response;@ApiOperation(value = "获取全部管理员", httpMethod = "GET")@RequestMapping("/selectAll")public ResponseData<List<Admins>> selectAll() {return adminsService.selectAll();}@ApiOperation(value = "根据条件筛选获取管理员列表,并分页", httpMethod = "POST")@RequestMapping("/selectPages")public ResponseData selectPages(@RequestBody Map<String, Object> req) {return adminsService.selectPages(req);}@ApiOperation(value = "根据过滤信息获取相关数据", httpMethod = "POST")@RequestMapping("/filter")public ResponseData<List<Admins>> filter(@RequestBody Map<String, Object> req) {return adminsService.filter(req);}@Autowiredprivate AuthenticationManager authenticationManager;@ApiOperation(value = "修改密码", httpMethod = "POST")@PostMapping("/editPassword")public ResponseData<Object> editPassword(@RequestParam(required = false) String oldPassword,@RequestParam(required = false) String newPwd,@RequestParam(required = false) String newPwd2) {Authentication authentication = null;SessionUser user = Request.user();if (!user.getCx().equals("小程序")) {if (StrUtil.hasBlank(oldPassword) || StrUtil.hasBlank(newPwd) || StrUtil.hasBlank(newPwd2)) {return JsonResult.error("请输入密码");}if (!newPwd.equals(newPwd2)) {return JsonResult.error("确认密码不正确,请重试");}try {//会自动调用loadUserByUsername方法,若查到用户,且用户名密码正确,则验证通过。// 关于密码的解密,配置在WebSecurityConfig类中(与注册时的加密策略保持相同)String pwd = oldPassword;authentication = authenticationManager.authenticate(new UsernamePasswordAuthenticationToken(user.getUsername(), pwd));} catch (Exception e) {e.printStackTrace();//当loadUserByUsername方法找不到用户时,会进入此异常//若查到用户,且用户名密码不匹配,会进入此异常return JsonResult.error("原密码错误");}Admins admins = adminsMapper.selectById(user.getId());admins.setPwd(newPwd);return adminsService.update(admins, new HashMap());}return JsonResult.error("此用户不支持修改密码");}@ApiOperation(value = "根据id获取信息", httpMethod = "GET")@RequestMapping("/findById")@ApiImplicitParam(name = "id", value = "管理员对应的id", dataType = "Integer")public ResponseData findById(@RequestParam Integer id) {return adminsService.findById(id);}@ApiOperation(value = "根据id更新数据", httpMethod = "POST")@RequestMapping("/update")@ApiImplicitParam(name = "data", value = "使用json数据提交", type = "json", dataTypeClass = Admins.class, paramType = "body")public ResponseData update(@RequestBody Map data) {Admins post = BeanUtil.mapToBean(data, Admins.class, true);return adminsService.update(post, data);}@ApiOperation(value = "插入一行数据,返回插入后的管理员", httpMethod = "POST")@RequestMapping("/insert")@ApiImplicitParam(name = "data", value = "使用json数据提交", type = "json", dataTypeClass = Admins.class, paramType = "body")public ResponseData insert(@RequestBody Map data) {Admins post = BeanUtil.mapToBean(data, Admins.class, true);return adminsService.insert(post, data);}@ApiOperation(value = "根据id列表删除数据", httpMethod = "POST")@RequestMapping("/delete")@ApiImplicitParam(name = "id", value = "管理员对应的id", type = "json", dataTypeClass = List.class)public ResponseData delete(@RequestBody List<Integer> id) {return adminsService.delete(id);}
}
package com.spboot.tx.controller;import cn.hutool.core.bean.BeanUtil;
import com.spboot.tx.mapper.*;
import com.spboot.tx.pojo.*;
import com.spboot.tx.service.*;
import com.spboot.tx.utils.*;
import io.swagger.annotations.*;
import java.io.*;
import java.util.*;
import javax.annotation.Resource;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.*;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;@Api(tags = { "地区控制器" })
@RestController
@RequestMapping("/api/diqu")
public class DiquController {@Autowiredpublic DiquService diquService;@Resourceprivate HttpServletRequest request;@Resourceprivate HttpServletResponse response;@ApiOperation(value = "获取全部地区", httpMethod = "GET")@RequestMapping("/selectAll")public ResponseData<List<Diqu>> selectAll() {return diquService.selectAll();}@ApiOperation(value = "根据条件筛选获取地区列表,并分页", httpMethod = "POST")@RequestMapping("/selectPages")public ResponseData selectPages(@RequestBody Map<String, Object> req) {return diquService.selectPages(req);}@ApiOperation(value = "根据过滤信息获取相关数据", httpMethod = "POST")@RequestMapping("/filter")public ResponseData<List<Diqu>> filter(@RequestBody Map<String, Object> req) {return diquService.filter(req);}@ApiOperation(value = "根据id获取信息", httpMethod = "GET")@RequestMapping("/findById")@ApiImplicitParam(name = "id", value = "地区对应的id", dataType = "Integer")public ResponseData findById(@RequestParam Integer id) {return diquService.findById(id);}@ApiOperation(value = "根据id更新数据", httpMethod = "POST")@RequestMapping("/update")@ApiImplicitParam(name = "data", value = "使用json数据提交", type = "json", dataTypeClass = Diqu.class, paramType = "body")public ResponseData update(@RequestBody Map data) {Diqu post = BeanUtil.mapToBean(data, Diqu.class, true);return diquService.update(post, data);}@ApiOperation(value = "插入一行数据,返回插入后的地区", httpMethod = "POST")@RequestMapping("/insert")@ApiImplicitParam(name = "data", value = "使用json数据提交", type = "json", dataTypeClass = Diqu.class, paramType = "body")public ResponseData insert(@RequestBody Map data) {Diqu post = BeanUtil.mapToBean(data, Diqu.class, true);return diquService.insert(post, data);}@ApiOperation(value = "根据id列表删除数据", httpMethod = "POST")@RequestMapping("/delete")@ApiImplicitParam(name = "id", value = "地区对应的id", type = "json", dataTypeClass = List.class)public ResponseData delete(@RequestBody List<Integer> id) {return diquService.delete(id);}
}

五,相关作品展示

基于Java开发、Python开发、PHP开发、C#开发等相关语言开发的实战项目

基于Nodejs、Vue等前端技术开发的前端实战项目

基于微信小程序和安卓APP应用开发的相关作品

基于51单片机等嵌入式物联网开发应用

基于各类算法实现的AI智能应用

基于大数据实现的各类数据管理和推荐系统

 

 

这篇关于小程序二手商城|使用Springboot+vue+微信小程序开发校园二手商城系统的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/819054

相关文章

Pandas使用SQLite3实战

《Pandas使用SQLite3实战》本文主要介绍了Pandas使用SQLite3实战,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学... 目录1 环境准备2 从 SQLite3VlfrWQzgt 读取数据到 DataFrame基础用法:读

JSON Web Token在登陆中的使用过程

《JSONWebToken在登陆中的使用过程》:本文主要介绍JSONWebToken在登陆中的使用过程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录JWT 介绍微服务架构中的 JWT 使用结合微服务网关的 JWT 验证1. 用户登录,生成 JWT2. 自定义过滤

Java中StopWatch的使用示例详解

《Java中StopWatch的使用示例详解》stopWatch是org.springframework.util包下的一个工具类,使用它可直观的输出代码执行耗时,以及执行时间百分比,这篇文章主要介绍... 目录stopWatch 是org.springframework.util 包下的一个工具类,使用它

Java进行文件格式校验的方案详解

《Java进行文件格式校验的方案详解》这篇文章主要为大家详细介绍了Java中进行文件格式校验的相关方案,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、背景异常现象原因排查用户的无心之过二、解决方案Magandroidic Number判断主流检测库对比Tika的使用区分zip

Java实现时间与字符串互相转换详解

《Java实现时间与字符串互相转换详解》这篇文章主要为大家详细介绍了Java中实现时间与字符串互相转换的相关方法,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、日期格式化为字符串(一)使用预定义格式(二)自定义格式二、字符串解析为日期(一)解析ISO格式字符串(二)解析自定义

Java使用Curator进行ZooKeeper操作的详细教程

《Java使用Curator进行ZooKeeper操作的详细教程》ApacheCurator是一个基于ZooKeeper的Java客户端库,它极大地简化了使用ZooKeeper的开发工作,在分布式系统... 目录1、简述2、核心功能2.1 CuratorFramework2.2 Recipes3、示例实践3

Springboot处理跨域的实现方式(附Demo)

《Springboot处理跨域的实现方式(附Demo)》:本文主要介绍Springboot处理跨域的实现方式(附Demo),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不... 目录Springboot处理跨域的方式1. 基本知识2. @CrossOrigin3. 全局跨域设置4.

springboot security使用jwt认证方式

《springbootsecurity使用jwt认证方式》:本文主要介绍springbootsecurity使用jwt认证方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录前言代码示例依赖定义mapper定义用户信息的实体beansecurity相关的类提供登录接口测试提供一

go中空接口的具体使用

《go中空接口的具体使用》空接口是一种特殊的接口类型,它不包含任何方法,本文主要介绍了go中空接口的具体使用,具有一定的参考价值,感兴趣的可以了解一下... 目录接口-空接口1. 什么是空接口?2. 如何使用空接口?第一,第二,第三,3. 空接口几个要注意的坑坑1:坑2:坑3:接口-空接口1. 什么是空接

Spring Boot 3.4.3 基于 Spring WebFlux 实现 SSE 功能(代码示例)

《SpringBoot3.4.3基于SpringWebFlux实现SSE功能(代码示例)》SpringBoot3.4.3结合SpringWebFlux实现SSE功能,为实时数据推送提供... 目录1. SSE 简介1.1 什么是 SSE?1.2 SSE 的优点1.3 适用场景2. Spring WebFlu