一、源码特点
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 map= new HashMap();
System.out.println("addPageok");
return "Notice/Noticeadd";
}
@RequestMapping(value="/add")
public String add(Notice Notice,HttpServletRequest request){
Map map= new HashMap();
//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", "");
System.out.println("addok");
return "Notice/Noticeadd";
}
/**删除
*
*/
@RequestMapping(value="/del")
public String del(Integer id,HttpServletRequest request,Map map){
// Map map= new HashMap();
String a=(String)request.getParameter("keyid");
id=Integer.parseInt(a);
request.setAttribute("msg", "");
Noticedao.del(id);
return selectall(null,map,request);
}
/**
* 修改Notice信息
*/
@RequestMapping(value="/update")
public String update(Notice Notice,HttpServletRequest request,Map map1){
Map map= new HashMap();
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", "");
Noticedao.update(map);
return selectall(null,map1,request);
}
/**
* 查询Notice信息
*/
@RequestMapping(value="/modify")
public String modify(Integer id,Map map,HttpServletRequest request){
String keyid=(String)request.getParameter("keyid");
List
三、注意事项
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/
四 系统实现