本文主要是介绍基于SSM的婴幼儿商城,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
基于SSM的婴幼儿商城
✌全网粉丝20W+,csdn特邀作者、博客专家、CSDN新星计划导师、java领域优质创作者,博客之星、掘金/华为云/阿里云/InfoQ等平台优质作者、专注于Java技术领域和毕业项目实战✌
🍅文末获取项目下载方式🍅
一、项目背景介绍:
当今社会已经是一个新的信息技术时代,各个行业和领域也都有了翻天覆地的变革,各大行业都努力争取上游,改变各种行业管理水平和现代化管理,进一步适应信息科技和社会的变革与发展,计算机、网络技术已融合到各行各业的工作生活当中,企业对信息的需求刻不容缓。
设计并研究开发一个基于 myeclipse 开发平台的母婴用品商城系统,该平台采用 b / s 架构,结合前端开发语言 java ,后台数据库 mysql。母婴专属商品网站系统可以为用户提供方便的信息注册、查询、管理等功能,大家通过互联网就可以及时地查找和获取自己的所需,不仅大大降低了人力物力,而且网站管理员的工作效率大大提升。本研究项目依据企业日常经营管理工作的要求和母婴用品商城系统的经营管理流程,结合现代科学管理理论,设计并研制一个基于互联网环境下的母婴用品商城系统。据分析母婴用品商城系统的市场需求和其应用,通过对用户和系统管理员两个角色的配置来完成对系统职能的执行与实现,完成对企业信息的管理。
二、项目技术简介:
- JAVA:Java是一门面向对象编程语言,不仅吸收了C++语言的各种优点,还摒弃了C++里难以理解的多继承、指针等概念,因此Java语言具有功能强大和简单易用两个特征。Java语言作为静态面向对象编程语言的代表,极好地实现了面向对象理论,允许程序员以优雅的思维方式进行复杂的编程。
- Spring:Spring框架是一个开放源代码的J2EE应用程序框架,由Rod Johnson发起,是针对bean的生命周期进行管理的轻量级容器(lightweight container)。 Spring解决了开发者在J2EE开发中遇到的许多常见的问题,提供了功能强大IOC、AOP及Web MVC等功能。Spring可以单独应用于构筑应用程序,也可以和Struts、Webwork、Tapestry等众多Web框架组合使用,并且可以与 Swing等桌面应用程序AP组合。因此, Spring不仅仅能应用于J2EE应用程序之中,也可以应用于桌面应用程序以及小应用程序之中。Spring框架主要由七部分组成,分别是 Spring Core、 Spring AOP、 Spring ORM、 Spring DAO、Spring Context、 Spring Web和 Spring Web MVC。
- Mybatis:MyBatis本是apache的一个开源项目iBatis,2010年这个项目由apache software foundation迁移到了google code,并且改名为MyBatis。2013年11月迁移到Github。
iBATIS一词来源于“internet”和“abatis”的组合,是一个基于Java的持久层框架。iBATIS提供的持久层框架包括SQL Maps和Data Access Objects(DAOs)。 - Jsp:JSP(全称JavaServer Pages)是由Sun Microsystems公司主导创建的一种动态网页技术标准。JSP部署于网络服务器上,可以响应客户端发送的请求,并根据请求内容动态地生成HTML、XML或其他格式文档的Web网页,然后返回给请求者。JSP技术以Java语言作为脚本语言,为用户的HTTP请求提供服务,并能与服务器上的其它Java程序共同处理复杂的业务需求。
。
JSP将Java代码和特定变动内容嵌入到静态的页面中,实现以静态页面为模板,动态生成其中的部分内容。JSP引入了被称为“JSP动作”的XML标签,用来调用内建功能。另外,可以创建JSP标签库,然后像使用标准HTML或XML标签一样使用它们。标签库能增强功能和服务器性能,而且不受跨平台问题的限制。JSP文件在运行时会被其编译器转换成更原始的Servlet代码。JSP编译器可以把JSP文件编译成用Java代码写的Servlet,然后再由Java编译器来编译成能快速执行的二进制机器码,也可以直接编译成二进制码。 - Spring-Mvc:Spring MVC属于SpringFrameWork的后续产品,已经融合在Spring Web Flow里面。Spring 框架提供了构建 Web 应用程序的全功能 MVC 模块。使用 Spring 可插入的 MVC 架构,从而在使用Spring进行WEB开发时,可以选择使用Spring的Spring MVC框架或集成其他MVC开发框。
三、系统功能模块介绍:
四、数据库设计:
1:active(active)
字段名 | 类型 | 默认值 | 列注释 |
---|---|---|---|
id | int | NULL | |
itemId | int | NULL | |
stock | int | NULL | |
num | int | NULL | |
startTime | datetime | NULL | |
endTime | datetime | NULL | |
status | int | NULL | 状态[0:未开始,1:开始中,2:已结束] |
price | varchar | NULL |
2:car(car)
字段名 | 类型 | 默认值 | 列注释 |
---|---|---|---|
id | int | NULL | |
item_id | int | NULL | |
user_id | int | NULL | |
num | int | NULL | |
price | decimal | NULL | |
total | varchar | NULL |
3:comment(comment)
字段名 | 类型 | 默认值 | 列注释 |
---|---|---|---|
id | int | NULL | |
user_id | int | NULL | |
item_id | int | NULL | |
content | varchar | NULL | |
addTime | datetime | NULL | |
status | int | NULL |
4:item(item)
字段名 | 类型 | 默认值 | 列注释 |
---|---|---|---|
id | int | NULL | |
name | varchar | NULL | |
price | varchar | NULL | 价格 |
scNum | int | NULL | 收藏数 |
gmNum | int | NULL | 购买数 |
url1 | varchar | NULL | 主图 |
url2 | varchar | NULL | 附图 |
url3 | varchar | NULL | 附图 |
url4 | varchar | NULL | 附图 |
url5 | varchar | NULL | 附图 |
ms | text | NULL | 描述 |
pam1 | varchar | NULL | 参数1 |
pam2 | varchar | NULL | 参数2 |
pam3 | varchar | NULL | 参数3 |
val3 | varchar | NULL | 值3 |
val2 | varchar | NULL | 值2 |
val1 | varchar | NULL | 值1 |
type | int | NULL | 类型 |
zk | float | NULL | 折扣 |
category_id_one | int | NULL | 类别id |
category_id_two | int | NULL | 类别2级 |
isDelete | int | NULL | 0否 1是 |
num | int | NULL | 点赞数 |
5:item_category(item_category)
字段名 | 类型 | 默认值 | 列注释 |
---|---|---|---|
id | int | NULL | |
name | varchar | NULL | 类目名称 |
pid | int | NULL | 父id |
isDelete | int | NULL |
6:item_order(item_order)
字段名 | 类型 | 默认值 | 列注释 |
---|---|---|---|
id | int | NULL | |
item_id | int | NULL | |
user_id | int | NULL | |
code | varchar | NULL | |
addTime | datetime | NULL | |
total | varchar | NULL | |
isDelete | int | NULL | |
status | int | NULL | 0.新建代发货1.已取消 2已已发货3.到收货4已评价 |
7:manage(manage)
字段名 | 类型 | 默认值 | 列注释 |
---|---|---|---|
id | int | NULL | |
userName | varchar | NULL | |
passWord | varchar | NULL | |
realName | varchar | NULL | |
type | varchar | NULL |
8:‘留言表’(message)
字段名 | 类型 | 默认值 | 列注释 |
---|---|---|---|
id | int | NULL | |
name | varchar | NULL | |
phone | varchar | NULL | |
content | varchar | NULL |
9:news(news)
字段名 | 类型 | 默认值 | 列注释 |
---|---|---|---|
id | int | NULL | |
name | varchar | NULL | |
content | text | NULL | |
addTime | datetime | NULL |
10:order_detail(order_detail)
字段名 | 类型 | 默认值 | 列注释 |
---|---|---|---|
id | int | NULL | |
item_id | int | NULL | |
order_id | int | NULL | |
status | int | NULL | 0.未退货 1已退货 |
num | int | NULL | |
total | varchar | NULL |
11:sc(sc)
字段名 | 类型 | 默认值 | 列注释 |
---|---|---|---|
id | int | NULL | |
item_id | int | NULL | |
user_id | int | NULL |
12:user(user)
字段名 | 类型 | 默认值 | 列注释 |
---|---|---|---|
id | int | NULL | |
userName | varchar | NULL | |
passWord | varchar | NULL | |
phone | varchar | NULL | |
realName | varchar | NULL | |
sex | varchar | NULL | |
address | varchar | NULL | |
varchar | NULL |
五、功能模块:
-
首页:商城首页会展示所有后台添加的一级分类,二级分类数据,以及秒杀活动,热门商品等数据
-
商品列表模块:根据不同的二级分类,可以今日不同的商品列表模块,该模块可以进行查询,排序等操作
-
商品详情模块:该模块主要是商品详情的一个展示,还包括加入购物车,收藏,点赞,评论等功能
-
购物车,订单模块:购物完成之后会将购物车里的数据删除,添加到我的订单中去,其中也包括一系列的订单状态,包括代发货,已收货,已完成等
-
个人中心:个人中心包含个人信息管理,地址管理,订单,评论,收藏等管理
-
秒杀模块:主要对系统的一些特殊商品进行秒杀处理
-
后台管理模块:后台主要对商品,商品分类,育儿知识文章,订单,管理员等进行一系列的管理操作
-
数据统计模块:数据统计主要对整个商城进行一些销售统计,从而形成图形报表,供管理员查看
六、代码示例:
首页
@RequestMapping("/uIndex")public String uIndex(Model model, Item item, HttpServletRequest request) {String sql1 = "select * from item_category where isDelete=0 and pid is null order by name";List<ItemCategory> fatherList = itemCategoryService.listBySqlReturnEntity(sql1);List<CategoryDto> list = new ArrayList<>();if (!CollectionUtils.isEmpty(fatherList)) {for (ItemCategory ic : fatherList) {CategoryDto dto = new CategoryDto();dto.setFather(ic);//查询二级分类String sql2 = "select * from item_category where isDelete=0 and pid=" + ic.getId();List<ItemCategory> childrens = itemCategoryService.listBySqlReturnEntity(sql2);dto.setChildrens(childrens);list.add(dto);model.addAttribute("lbs", list);}}//秒杀活动String sql = "select * from active where status != 2 order by startTime desc";List<Active> activeList = activeService.listBySqlReturnEntity(sql);if (activeList != null && activeList.size() > 0) {Map<Integer, Active> integerActiveMap = activeList.stream().collect(Collectors.toMap(a -> a.getItemId(), a -> a, (k1, k2) -> k1));String itemIds = activeList.stream().map(active -> String.valueOf(active.getItemId())).collect(Collectors.joining(","));String itemSql = "select * from item where isDelete=0 and id in (" + itemIds + ")";List<Item> zks = itemService.listBySqlReturnEntity(itemSql);for (Item zk : zks) {zk.setStartTime(integerActiveMap.get(zk.getId()).getStartTime());}model.addAttribute("zks", zks);}//热销商品List<Item> rxs = itemService.listBySqlReturnEntity("select * from item where isDelete=0 order by gmNum desc limit 0,10");model.addAttribute("rxs", rxs);return "login/uIndex";}
商品列表模块
/*** 查询分类列表*/@RequestMapping("/findBySql")public String findBySql(Model model,ItemCategory itemCategory){String sql = "select * from item_category where isDelete = 0 and pid is null order by id";Pager<ItemCategory> pagers = itemCategoryService.findBySqlRerturnEntity(sql);model.addAttribute("pagers",pagers);model.addAttribute("obj",itemCategory);return "itemCategory/itemCategory";}/*** 转向到新增一级分类页面*/@RequestMapping(value = "/add")public String add(){return "itemCategory/add";}
商品详情模块
@RequestMapping("/shoplist")public String shoplist(Item item, String condition, Model model) {String sql = "select * from item where isDelete=0";if (!isEmpty(item.getCategoryIdOne())) {sql += " and category_id_one=" + item.getCategoryIdOne();}if (!isEmpty(item.getCategoryIdTwo())) {sql += " and category_id_two=" + item.getCategoryIdTwo();}if (!isEmpty(condition)) {sql += " and name like '%" + condition + "%' or category_id_one like '%" + condition + "%' or category_id_two like '%" + condition + "%'";model.addAttribute("condition", condition);}if (!isEmpty(item.getPrice())) {sql += " order by (price+0) desc";}if (!isEmpty(item.getGmNum())) {sql += " order by gmNum desc";}if (isEmpty(item.getPrice()) && isEmpty(item.getGmNum())) {sql += " order by id desc";}Pager<Item> pagers = itemService.findBySqlRerturnEntity(sql);model.addAttribute("pagers", pagers);model.addAttribute("obj", item);return "item/shoplist";}
购物车,订单模块
@RequestMapping("/my")public String my(Model model, HttpServletRequest request) {Object attribute = request.getSession().getAttribute(Consts.USERID);if (attribute == null) {return "redirect:/login/uLogin";}Integer userId = Integer.valueOf(attribute.toString());//全部订单String sql = "select * from item_order where user_id=" + userId + " order by id desc";List<ItemOrder> all = itemOrderService.listBySqlReturnEntity(sql);//待发货String sql2 = "select * from item_order where user_id=" + userId + " and status=0 order by id desc";List<ItemOrder> dfh = itemOrderService.listBySqlReturnEntity(sql2);//已取消String sql3 = "select * from item_order where user_id=" + userId + " and status=1 order by id desc";List<ItemOrder> yqx = itemOrderService.listBySqlReturnEntity(sql3);//已发货String sql4 = "select * from item_order where user_id=" + userId + " and status=2 order by id desc";List<ItemOrder> dsh = itemOrderService.listBySqlReturnEntity(sql4);//已收货String sql5 = "select * from item_order where user_id=" + userId + " and status=3 order by id desc";List<ItemOrder> ysh = itemOrderService.listBySqlReturnEntity(sql5);model.addAttribute("all", all);model.addAttribute("dfh", dfh);model.addAttribute("yqx", yqx);model.addAttribute("dsh", dsh);model.addAttribute("ysh", ysh);return "itemOrder/my";}
个人中心
@RequestMapping("/findBySql")public String findBySql(Model model, User user, Manage manage,HttpServletRequest request){//怎么获取当前登录的用户
// Object role = request.getSession().getAttribute(Consts.MANAGE);
// cgp
// if (role!="admin"){
// return "user/role";
// }String sql = "select * from user where 1=1 ";if(!isEmpty(user.getUserName())){sql += " and userName like '%"+user.getUserName()+"%' ";}sql+=" order by id";Pager<User> pagers = userService.findBySqlRerturnEntity(sql);model.addAttribute("pagers",pagers);model.addAttribute("obj",user);return "user/user";}
秒杀模块
@RequestMapping("/ms")@ResponseBodypublic String ms(Integer itemId, Integer msId, HttpServletRequest request) {Object attribute = request.getSession().getAttribute(Consts.USERID);JSONObject js = new JSONObject();if (attribute == null) {js.put(Consts.RES, 0);//没有登录return js.toJSONString();}Integer userId = Integer.valueOf(attribute.toString());User byId = userService.getById(userId);if (StringUtils.isEmpty(byId.getAddress())) {js.put(Consts.RES, 2);//地址为空return js.toJSONString();}synchronized (lock) {ItemOrder order = new ItemOrder();Active active = activeService.getById(msId);if (active.getStatus() != 1) {js.put(Consts.RES, 3);//地址为空return js.toJSONString();}active.setNum(active.getNum() - 1);activeService.updateById(active);order.setStatus(0);order.setCode(getOrderNo());order.setIsDelete(0);order.setTotal(active.getPrice());order.setUserId(userId);order.setAddTime(new Date());itemOrderService.insert(order);OrderDetail de = new OrderDetail();de.setItemId(itemId);de.setOrderId(order.getId());de.setStatus(0);de.setNum(1);de.setTotal(active.getPrice());orderDetailService.insert(de);// 修改成交数Item load2 = itemService.load(itemId);load2.setGmNum(load2.getGmNum() + 1);itemService.updateById(load2);js.put(Consts.RES, 1);//成功return js.toJSONString();}}
后台管理模块
private void itemCommon(Item item, @RequestParam("file") CommonsMultipartFile[] files, HttpServletRequest request) throws IOException {if (files.length > 0) {for (int s = 0; s < files.length; s++) {String n = UUIDUtils.create();String path = SystemContext.getRealPath() + "\\resource\\ueditor\\upload\\" + n + files[s].getOriginalFilename();File newFile = new File(path);//通过CommonsMultipartFile的方法直接写文件files[s].transferTo(newFile);if (s == 0) {item.setUrl1(request.getContextPath() + "\\resource\\ueditor\\upload\\" + n + files[s].getOriginalFilename());}if (s == 1) {item.setUrl2(request.getContextPath() + "\\resource\\ueditor\\upload\\" + n + files[s].getOriginalFilename());}if (s == 2) {item.setUrl3(request.getContextPath() + "\\resource\\ueditor\\upload\\" + n + files[s].getOriginalFilename());}if (s == 3) {item.setUrl4(request.getContextPath() + "\\resource\\ueditor\\upload\\" + n + files[s].getOriginalFilename());}if (s == 4) {item.setUrl5(request.getContextPath() + "\\resource\\ueditor\\upload\\" + n + files[s].getOriginalFilename());}}}ItemCategory byId = itemCategoryService.getById(item.getCategoryIdTwo());item.setCategoryIdOne(byId.getPid());}
数据统计模块
@ResponseBody@RequestMapping("/dz")public String dz(Item item, HttpServletRequest request) {JSONObject js = new JSONObject();Object attribute = request.getSession().getAttribute(Consts.USERID);if (attribute == null) {js.put(Consts.RES, 0);//0失败return js.toJSONString(); //用json格式输出,将JSON对象转化为JSON字符.结合ajax,请求服务器数据。}Item item1 = itemService.load(item.getId());item.setNum(item1.getNum() + 1);itemService.updateById(item);js.put(Consts.RES, 1);//成功return js.toJSONString();}
七、项目总结:
本母婴商城系统主要分为前台和后台两大板块。
用户的操作区域是在前台,管理员则对后台进行操作前台系统主要具备了登录和注册,商品展示,商品搜索,购物车等功能,游客可以进入商城主页进行浏览,查看关于母婴商品信息,可以精准查找所需商品,了解相关活动资讯。后台系统包括维护商品和对前台页面动态进行维护管理。
八、源码获取:
大家点赞、收藏、关注、评论啦 、查看👇🏻👇🏻👇🏻获取联系方式👇🏻👇🏻👇🏻
链接点击直达:下载链接
这篇关于基于SSM的婴幼儿商城的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!