• Java毕设项目——书画拍卖网站(java+SSM+Maven+Mysql+Jsp)


    文末获取源码 

    开发语言:Java

    框架:SSM

    技术:Jsp

    JDK版本:JDK1.8

    服务器:tomcat7

    数据库:mysql 5.7/8.0

    数据库工具:Navicat11

    开发软件:eclipse/myeclipse/idea

    Maven包:Maven3.3.9

    浏览器:谷歌浏览器

    一、前言介绍  

    书画拍卖网站主要是为了用户方便对书画竞拍进行查看或者购买,也是为了更好的让管理员进行更好存储所有数据信息及快速方便的检索功能,对系统的各个模块是通过许多今天的发达系统做出合理的分析来确定考虑用户的可操作性,遵循开发的系统优化的原则,经过全面的调查和研究。

    系统所要实现的功能分析,对于现在网络方便的管理,系统要实现用户可以直接在平台上进行查看首页、画作竞拍、画家介绍、书画界资讯、个人中心、后台管理,根据自己的需求可以进行查看书画拍卖信息等,这样既能节省用户的时间,不用在像传统的方式,需要查询、由于很多用户的时间的原因,没有办法去实体店进行查阅,真的很难去满足用户的各种需求。所以网上书画拍卖网站的开发不仅仅是能满足用户的需求,还能提高管理员的工作效率,减少原有不必要的工作量。

    任何一个项目在开发研究前,都需要对研发系统本身的需求做一个认真的分析,市场的调研是不可忽视的,从实际场景中确定使用人员的功能需求,从而明确目标,对整个系统的开发有一个更加准确的定位。在这个章节,需要对系统的性能分析,业务流程分析,和数据等进行分析,书画拍卖网站的整体界面简单,功能完善。

    二、项目设计目标与原则 

    1、关于书画拍卖网站的基本要求

    (1)功能要求:个人中心、用户管理、画作竞拍管理、拍品类型管理、画家介绍管理、竞拍信息管理、成交订单管理、发货订单管理、确认订单管理、退货订单管理、系统管理等功能模块。

    2)性能:在不同操作系统上均能无差错实现在不同类型的用户登入相应界面后能不出差错、方便地进行预期操作。

    3)安全与保密要求:用户都必须通过管理员审核才能进入系统。

    4)环境要求:支持Windows系列、Vista系统等多种操作系统使用。

    2、开发目标

    书画拍卖网站的主要开发目标如下:

    1)实现管理系统信息关系的系统化、规范化和自动化;

    2)减少维护人员的工作量以及实现用户对信息的控制和管理;

    3)方便查询信息及管理信息等;

    4)通过网络操作,提高改善处理问题和操作人员工作的效率;

    5)考虑到用户多样性特点,要求界面和操作简便易懂。

    3、设计原则

    本书画拍卖网站系统采用SSM技术,Mysql数据库开发,充分保证了系统稳定性、完整性。

    书画拍卖网站系统的设计与实现的设计思想如下:

    1、操作简单方便、系统界面安全良好、简单明了的页面布局、方便查询管理相关信息。

    2、即时可见:对书画拍卖网站系统信息的处理将立马在对应地点可以查询到,从而实现“即时发布、即时见效”的系统功能。

    3、功能的完善性:可以管理管理员;个人中心、用户管理、画作竞拍管理、拍品类型管理、画家介绍管理、竞拍信息管理、成交订单管理、发货订单管理、确认订单管理、退货订单管理、系统管理,

    用户;个人中心、竞拍信息管理、成交订单管理、发货订单管理、确认订单管理、退货订单管理,

    前台首页;首页、画作竞拍、画家介绍、书画界资讯、个人中心、后台管理模块的修改维护操作。

    三、系统功能实现 

     首页

    画作竞拍

    画家介绍

    管理员功能模块

    画作竞拍管理

    竞拍信息管理

    成交订单管理

    四、部分核心代码 

    画作竞拍

     

    1. /**
    2. * 画作竞拍
    3. * 后端接口
    4. * @author
    5. * @email
    6. * @date 2022-04-04 14:35:27
    7. */
    8. @RestController
    9. @RequestMapping("/huazuojingpai")
    10. public class HuazuojingpaiController {
    11. @Autowired
    12. private HuazuojingpaiService huazuojingpaiService;
    13. @Autowired
    14. private StoreupService storeupService;
    15. /**
    16. * 后端列表
    17. */
    18. @RequestMapping("/page")
    19. public R page(@RequestParam Map<String, Object> params,HuazuojingpaiEntity huazuojingpai,
    20. HttpServletRequest request){
    21. EntityWrapper<HuazuojingpaiEntity> ew = new EntityWrapper<HuazuojingpaiEntity>();
    22. PageUtils page = huazuojingpaiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, huazuojingpai), params), params));
    23. request.setAttribute("data", page);
    24. return R.ok().put("data", page);
    25. }
    26. /**
    27. * 前端列表
    28. */
    29. @IgnoreAuth
    30. @RequestMapping("/list")
    31. public R list(@RequestParam Map<String, Object> params,HuazuojingpaiEntity huazuojingpai,
    32. HttpServletRequest request){
    33. EntityWrapper<HuazuojingpaiEntity> ew = new EntityWrapper<HuazuojingpaiEntity>();
    34. PageUtils page = huazuojingpaiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, huazuojingpai), params), params));
    35. request.setAttribute("data", page);
    36. return R.ok().put("data", page);
    37. }
    38. /**
    39. * 列表
    40. */
    41. @RequestMapping("/lists")
    42. public R list( HuazuojingpaiEntity huazuojingpai){
    43. EntityWrapper<HuazuojingpaiEntity> ew = new EntityWrapper<HuazuojingpaiEntity>();
    44. ew.allEq(MPUtil.allEQMapPre( huazuojingpai, "huazuojingpai"));
    45. return R.ok().put("data", huazuojingpaiService.selectListView(ew));
    46. }
    47. /**
    48. * 查询
    49. */
    50. @RequestMapping("/query")
    51. public R query(HuazuojingpaiEntity huazuojingpai){
    52. EntityWrapper< HuazuojingpaiEntity> ew = new EntityWrapper< HuazuojingpaiEntity>();
    53. ew.allEq(MPUtil.allEQMapPre( huazuojingpai, "huazuojingpai"));
    54. HuazuojingpaiView huazuojingpaiView = huazuojingpaiService.selectView(ew);
    55. return R.ok("查询画作竞拍成功").put("data", huazuojingpaiView);
    56. }
    57. /**
    58. * 后端详情
    59. */
    60. @RequestMapping("/info/{id}")
    61. public R info(@PathVariable("id") Long id){
    62. HuazuojingpaiEntity huazuojingpai = huazuojingpaiService.selectById(id);
    63. huazuojingpai.setClicknum(huazuojingpai.getClicknum()+1);
    64. huazuojingpai.setClicktime(new Date());
    65. huazuojingpaiService.updateById(huazuojingpai);
    66. return R.ok().put("data", huazuojingpai);
    67. }
    68. /**
    69. * 前端详情
    70. */
    71. @IgnoreAuth
    72. @RequestMapping("/detail/{id}")
    73. public R detail(@PathVariable("id") Long id){
    74. HuazuojingpaiEntity huazuojingpai = huazuojingpaiService.selectById(id);
    75. huazuojingpai.setClicknum(huazuojingpai.getClicknum()+1);
    76. huazuojingpai.setClicktime(new Date());
    77. huazuojingpaiService.updateById(huazuojingpai);
    78. return R.ok().put("data", huazuojingpai);
    79. }
    80. /**
    81. * 后端保存
    82. */
    83. @RequestMapping("/save")
    84. public R save(@RequestBody HuazuojingpaiEntity huazuojingpai, HttpServletRequest request){
    85. huazuojingpai.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    86. //ValidatorUtils.validateEntity(huazuojingpai);
    87. huazuojingpaiService.insert(huazuojingpai);
    88. return R.ok();
    89. }
    90. /**
    91. * 前端保存
    92. */
    93. @RequestMapping("/add")
    94. public R add(@RequestBody HuazuojingpaiEntity huazuojingpai, HttpServletRequest request){
    95. huazuojingpai.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    96. //ValidatorUtils.validateEntity(huazuojingpai);
    97. huazuojingpaiService.insert(huazuojingpai);
    98. return R.ok();
    99. }
    100. /**
    101. * 修改
    102. */
    103. @RequestMapping("/update")
    104. public R update(@RequestBody HuazuojingpaiEntity huazuojingpai, HttpServletRequest request){
    105. //ValidatorUtils.validateEntity(huazuojingpai);
    106. huazuojingpaiService.updateById(huazuojingpai);//全部更新
    107. return R.ok();
    108. }
    109. /**
    110. * 删除
    111. */
    112. @RequestMapping("/delete")
    113. public R delete(@RequestBody Long[] ids){
    114. huazuojingpaiService.deleteBatchIds(Arrays.asList(ids));
    115. return R.ok();
    116. }
    117. /**
    118. * 提醒接口
    119. */
    120. @RequestMapping("/remind/{columnName}/{type}")
    121. public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request,
    122. @PathVariable("type") String type,@RequestParam Map<String, Object> map) {
    123. map.put("column", columnName);
    124. map.put("type", type);
    125. if(type.equals("2")) {
    126. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
    127. Calendar c = Calendar.getInstance();
    128. Date remindStartDate = null;
    129. Date remindEndDate = null;
    130. if(map.get("remindstart")!=null) {
    131. Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
    132. c.setTime(new Date());
    133. c.add(Calendar.DAY_OF_MONTH,remindStart);
    134. remindStartDate = c.getTime();
    135. map.put("remindstart", sdf.format(remindStartDate));
    136. }
    137. if(map.get("remindend")!=null) {
    138. Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
    139. c.setTime(new Date());
    140. c.add(Calendar.DAY_OF_MONTH,remindEnd);
    141. remindEndDate = c.getTime();
    142. map.put("remindend", sdf.format(remindEndDate));
    143. }
    144. }
    145. Wrapper<HuazuojingpaiEntity> wrapper = new EntityWrapper<HuazuojingpaiEntity>();
    146. if(map.get("remindstart")!=null) {
    147. wrapper.ge(columnName, map.get("remindstart"));
    148. }
    149. if(map.get("remindend")!=null) {
    150. wrapper.le(columnName, map.get("remindend"));
    151. }
    152. int count = huazuojingpaiService.selectCount(wrapper);
    153. return R.ok().put("count", count);
    154. }
    155. /**
    156. * 前端智能排序
    157. */
    158. @IgnoreAuth
    159. @RequestMapping("/autoSort")
    160. public R autoSort(@RequestParam Map<String, Object> params,HuazuojingpaiEntity huazuojingpai, HttpServletRequest request,String pre){
    161. EntityWrapper<HuazuojingpaiEntity> ew = new EntityWrapper<HuazuojingpaiEntity>();
    162. Map<String, Object> newMap = new HashMap<String, Object>();
    163. Map<String, Object> param = new HashMap<String, Object>();
    164. Iterator<Map.Entry<String, Object>> it = param.entrySet().iterator();
    165. while (it.hasNext()) {
    166. Map.Entry<String, Object> entry = it.next();
    167. String key = entry.getKey();
    168. String newKey = entry.getKey();
    169. if (pre.endsWith(".")) {
    170. newMap.put(pre + newKey, entry.getValue());
    171. } else if (StringUtils.isEmpty(pre)) {
    172. newMap.put(newKey, entry.getValue());
    173. } else {
    174. newMap.put(pre + "." + newKey, entry.getValue());
    175. }
    176. }
    177. params.put("sort", "clicknum");
    178. params.put("order", "desc");
    179. PageUtils page = huazuojingpaiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, huazuojingpai), params), params));
    180. return R.ok().put("data", page);
    181. }
    182. }

    上传文件

    1. * 上传文件
    2. */
    3. @RequestMapping("/upload")
    4. public R upload(@RequestParam("file") MultipartFile file, String type,HttpServletRequest request) throws Exception {
    5. if (file.isEmpty()) {
    6. throw new EIException("上传文件不能为空");
    7. }
    8. String fileExt = file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf(".")+1);
    9. String fileName = new Date().getTime()+"."+fileExt;
    10. File dest = new File(request.getSession().getServletContext().getRealPath("/upload")+"/"+fileName);
    11. file.transferTo(dest);
    12. /**
    13. * 如果使用idea或者eclipse重启项目,发现之前上传的图片或者文件丢失,将下面一行代码注释打开
    14. * 请将以下的"D:\\ssmpiv99\\src\\main\\webapp\\upload"替换成你本地项目的upload路径,
    15. * 并且项目路径不能存在中文、空格等特殊字符
    16. */
    17. //FileUtils.copyFile(dest, new File("D:\\ssmpiv99\\src\\main\\webapp\\upload"+"/"+fileName)); /**修改了路径以后请将该行最前面的//注释去掉**/
    18. if(StringUtils.isNotBlank(type) && type.equals("1")) {
    19. ConfigEntity configEntity = configService.selectOne(new EntityWrapper<ConfigEntity>().eq("name", "faceFile"));
    20. if(configEntity==null) {
    21. configEntity = new ConfigEntity();
    22. configEntity.setName("faceFile");
    23. configEntity.setValue(fileName);
    24. } else {
    25. configEntity.setValue(fileName);
    26. }
    27. configService.insertOrUpdate(configEntity);
    28. }
    29. return R.ok().put("file", fileName);
    30. }

    用户注册

    1. /**
    2. * 注册
    3. */
    4. @IgnoreAuth
    5. @RequestMapping("/register")
    6. public R register(@RequestBody YonghuEntity yonghu){
    7. //ValidatorUtils.validateEntity(yonghu);
    8. YonghuEntity user = yonghuService.selectOne(new EntityWrapper<YonghuEntity>().eq("yonghuzhanghao", yonghu.getYonghuzhanghao()));
    9. if(user!=null) {
    10. return R.error("注册用户已存在");
    11. }
    12. Long uId = new Date().getTime();
    13. yonghu.setId(uId);
    14. yonghuService.insert(yonghu);
    15. return R.ok();
    16. }

  • 相关阅读:
    【LeetCode与《代码随想录》】贪心算法篇:做题笔记与总结-JavaScript版
    2.4 如何在FlinkSQL使用DataGen(数据生成器)
    pytorch深度学习实战lesson23
    TSNE降维学习
    springboot 注入配置文件中的集合 List
    mybatis防注入
    My Seventy-fourth Page - 零钱兑换Ⅱ - By Nicolas
    kubernetes 的 重要IP 概念
    17. Go并发编程
    前端工程化精讲第十二课 打包提效:如何为 Webpack 打包阶段提速?
  • 原文地址:https://blog.csdn.net/m0_49113107/article/details/126831560