一、源码特点
java SSM 啤酒配送管理系统是一套完善的web设计系统(系统采用SSM框架进行设计开发,spring+springMVC+mybatis),对理解JSP java编程开发语言有帮助,系统具有完整的源代
码和数据库,系统主要采用B/S模式开发。开发环境为TOMCAT7.0,Myeclipse8.5开发,数据库为Mysql5.0,使用java语言开发。
java SSM 啤酒配送管理系统myeclipse开发my
二、功能介绍
(1)类型管理:对类型信息进行添加、删除、修改和查看
(2)用户管理:对用户信息进行添加、删除、修改和查看
(3)车辆类型管理:对车辆类型信息进行添加、删除、修改和查看
(4)车辆管理:对车辆信息进行添加、删除、修改和查看
(5)啤酒类型管理:对啤酒类型信息进行添加、删除、修改和查看
(6)啤酒管理:对啤酒信息进行添加、删除、修改和查看
(7)订单管理:对订单信息进行添加、删除、修改和查看
(8)配送管理:对配送信息进行添加、删除、修改和查看
(9)公告管理:对公告信息进行添加、删除、修改和查看
(10)建议管理:对建议信息进行添加、删除、修改和查看
(11)屏蔽词管理:对屏蔽词信息进行添加、删除、修改和查看
代码设计
@Resource NoticeDao Noticedao;
@RequestMapping(value="/addPage")
public String addPage(Notice Notice,HttpServletRequest request){
Map<String,Object> map= new HashMap<String,Object>();
System.out.println("addPageok");
return "Notice/Noticeadd";
}
@RequestMapping(value="/add")
public String add(Notice Notice,HttpServletRequest request){
Map<String,Object> map= new HashMap<String,Object>();
//String name=(String)request.getParameter("name");
map.put("Nid", Notice.getNid());//公告编号
map.put("Title", Notice.getTitle());//标题
map.put("typea", Notice.getTypea());//类型
map.put("contenta", Notice.getContenta());//内容
map.put("Releasetime", Notice.getReleasetime());//发布时间
Noticedao.save(map);
request.setAttribute("msg", "<script>alert('添加成功');</script>");
System.out.println("addok");
return "Notice/Noticeadd";
}
/**删除
*
*/
@RequestMapping(value="/del")
public String del(Integer id,HttpServletRequest request,Map<String,Object> map){
// Map<String,Object> map= new HashMap<String,Object>();
String a=(String)request.getParameter("keyid");
id=Integer.parseInt(a);
request.setAttribute("msg", "<script>alert('删除成功');</script>");
Noticedao.del(id);
return selectall(null,map,request);
}
/**
* 修改Notice信息
*/
@RequestMapping(value="/update")
public String update(Notice Notice,HttpServletRequest request,Map<String,Object> map1){
Map<String,Object> map= new HashMap<String,Object>();
map.put("Nid", Notice.getNid());//公告编号
map.put("Title", Notice.getTitle());//标题
map.put("typea", Notice.getTypea());//类型
map.put("contenta", Notice.getContenta());//内容
map.put("Releasetime", Notice.getReleasetime());//发布时间
request.setAttribute("msg", "<script>alert('修改成功');</script>");
Noticedao.update(map);
return selectall(null,map1,request);
}
/**
* 查询Notice信息
*/
@RequestMapping(value="/modify")
public String modify(Integer id,Map<String,Object> map,HttpServletRequest request){
String keyid=(String)request.getParameter("keyid");
List<Map<String,Object>> list= new ArrayList<Map<String,Object>>();
list=Noticedao.select(Integer.parseInt(keyid));
request.setAttribute("Nid", list.get(0).get("Nid"));//公告编号
request.setAttribute("Title", list.get(0).get("Title"));//标题
request.setAttribute("typea", list.get(0).get("typea"));//类型
request.setAttribute("contenta", list.get(0).get("contenta"));//内容
request.setAttribute("Releasetime", list.get(0).get("Releasetime"));//发布时间
return "Notice/Noticemodify";
}
三、注意事项
1、管理员账号:admin 密码:admin 数据库配置文件datasource.properties
2、开发环境为TOMCAT7.0,Myeclipse8.5开发,数据库为Mysql5.0,使用java语言开发。
3、数据库文件名是jspssmpjps.sql,系统名称ssmpjps
4、系统首页地址:http://127.0.0.1:8080/ssmpjps/
四 系统实现