项目描述
临近学期结束,还是毕业设计,你还在做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")@ResponseBodypublic 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")@ResponseBodypublic 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();}
}
安装部署需求
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;
其它软件:截图工具、常用浏览器;
以上是本系统的部分功能展示,如果你的选题正好相符,那么可以做毕业设计或课程设计使用。