• 基于ssm的网上药房管理系统的设计与实现(源码+LW+调试)


    项目描述

    临近学期结束,还是毕业设计,你还在做java程序网络编程,期末作业,老师的作业要求觉得大了吗?不知道毕业设计该怎么办?网页功能的数量是否太多?没有合适的类型或系统?等等。今天给大家介绍一篇基于java的ssm网上药房管理系统的设计与实现。

    功能需求

    本网上药房系统通过分析和确定系统的角色和功能划分,按照业务合理区分为不同的菜单功能模块。从求医患者和医院相关管理人员的角度出发,对每个功能的需求实现点进行人性化详细的构思。对每个功能的细节点进行分析设计整合完成整个医疗系统的设计。
    系统患者用户功能模块:即登录功能、结算中心、购物车、修改密码、退出系统。
    系统管理员功能模块:用户管理、药品管理、个人中心、订单管理、工作人员管理、以及系统配置等。。

    在这里插入图片描述
    在这里插入图片描述

    部分效果图

    在这里插入图片描述

    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

    部分代码
    package com.qut.controller;
    import java.util.Date;
    import java.util.List;
    import javax.annotation.Resource;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    
    @Controller
    @RequestMapping("/category")
    public class CategoryController {
    
    	@Resource(name = "categoryService")
    	private CategoryService categoryService;
    	Logger log = Logger.getLogger(Log4jLogsDetial.class);
    
    	@RequestMapping(value = "/categoryQuery.do", produces = "application/json;charset=utf-8")
    	@ResponseBody
    	public String categoryQuery(@Param("id") Integer id, @Param("type") Integer type, @Param("name") String name) {
    		List<Category> list = categoryService.categoryQuery(new Category());
    		log.info("查询参数" + id);
    		JsonConfig jc = new JsonConfig();
    		jc.registerJsonValueProcessor(Date.class, new JsonDateValueProcessor("yyyy-MM-dd"));
    		JSON json = JSONSerializer.toJSON(new JsonResult<List<Category>>(list), jc);
    		return json.toString();
    	}
    
    	@RequestMapping(value = "/categoryUpdate.do", produces = "application/json;charset=utf-8")
    	@ResponseBody
    	public String categoryUpdate(HttpServletRequest request, HttpServletResponse response) {
    		Integer total = BaseUtils.toInteger(request.getParameter("total"));
    		for (int i = 0; i < total; i++) {
    			Integer id = BaseUtils.toInteger(request.getParameter("id" + i));
    			Float updatePrice = BaseUtils.toFloat(request.getParameter("updatePrice" + i));
    			Category category = new Category();
    			if (updatePrice != 0) {
    				category.setId(id);
    				category.setPrice(updatePrice);
    				categoryService.categoryUpdate(category);
    				log.info("更新参数" + id);
    			}
    		}
    		JsonConfig jc = new JsonConfig();
    		jc.registerJsonValueProcessor(Date.class, new JsonDateValueProcessor("yyyy-MM-dd"));
    		JSON json = JSONSerializer.toJSON(new JsonResult<Category>(new Category()), jc);
    		return json.toString();
    	}
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    安装部署需求

    eclipse/idea运行启动

    系统部署

    系统开发后,在生产环境配置项目运行环境,具体步骤如下:
    安装linux或者windows10操作系统;
    安装JDK1.8并配置环境变量;
    安装MySQL5.7版本以上版本数据库,创建数据库并执行脚本创建表;
    在eclipse/idea中运行打包;

    本项目用到的技术和框架

    1.开发语言:Java
    2.开发模式:B/S
    3.数据库:MySQL5.7
    4.框架:SSM

    本项目中的关键点

    此系统的开发采用java语言开发,基于B/S结构,这些开发环境使系统更加完善。使用到的工具和技术都是开源免费的。

    环境工具

    开发工具 Eclipse
    语言 JDK1.8 、SSM
    硬件:笔记本电脑;
    软件:Tomcat8.0 Web服务器、Navicat数据库客户端、MySQL;
    操作系统:Windows 10;
    其它软件:截图工具、常用浏览器;
    以上是本系统的部分功能展示,如果你的选题正好相符,那么可以做毕业设计或课程设计使用。

  • 相关阅读:
    Android学习笔记
    ansible——利用主机模式选择主机
    深入分析若依数据权限@datascope (注解+AOP+动态sql拼接) 【循序渐进,附分析过程】
    顺利通过论文查重检测的小技巧
    计算机毕业设计Java自习室座位预约管理(源码+系统+mysql数据库+lw文档)
    马化腾去年年薪同比下降 25%,腾讯的下一步怎么走?
    GPT-2源码实现及GPT-3、GPT-3.5、GPT-4及GPT-5内幕解析
    “华为杯”研究生数学建模竞赛2019年-【华为杯】F题:智能飞行器航迹规划模型(下)(附优秀论文及Pyhton代码实现)
    基于SSM的学生实践管理平台开发
    Spring注解系列——@PropertySource
  • 原文地址:https://blog.csdn.net/mxg74110/article/details/134292348