免费分享一个SSM商城管理系统,很漂亮的
Posted java1234_小锋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了免费分享一个SSM商城管理系统,很漂亮的相关的知识,希望对你有一定的参考价值。
大家好,我是锋哥,看到一个不错的SSM商城管理系统,分享下哈。
项目介绍
这是基于SSM框架开发的项目,前端用户界面采用 html+css+javascript+Ajax开发,后台管理页面采用Easyui技术开发。
项目展示
1、主界面
2、商品详情页面
3、登陆界面
4、管理员登录
5、后台管理-菜单管理
6、后台管理-订单管理
7、后台管理-商品分类管理
数据库设计
部分代码
package com.ischoolbar.programmer.controller.admin;
import java.io.File;
import java.io.IOException;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.apache.commons.lang.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.servlet.ModelAndView;
import com.ischoolbar.programmer.entity.admin.Role;
import com.ischoolbar.programmer.entity.admin.User;
import com.ischoolbar.programmer.page.admin.Page;
import com.ischoolbar.programmer.service.admin.RoleService;
import com.ischoolbar.programmer.service.admin.UserService;
/**
* 用户管理控制器
* @author llq
*
*/
@RequestMapping("/admin/user")
@Controller
public class UserController
@Autowired
private UserService userService;
@Autowired
private RoleService roleService;
/**
* 用户列表页面
* @param model
* @return
*/
@RequestMapping(value="/list",method=RequestMethod.GET)
public ModelAndView list(ModelAndView model)
Map<String, Object> queryMap = new HashMap<String, Object>();
model.addObject("roleList", roleService.findList(queryMap));
model.setViewName("user/list");
return model;
/**
* 获取用户列表
* @param page
* @param username
* @param roleId
* @param sex
* @return
*/
@RequestMapping(value="/list",method=RequestMethod.POST)
@ResponseBody
public Map<String, Object> getList(Page page,
@RequestParam(name="username",required=false,defaultValue="") String username,
@RequestParam(name="roleId",required=false) Long roleId,
@RequestParam(name="sex",required=false) Integer sex
)
Map<String, Object> ret = new HashMap<String, Object>();
Map<String, Object> queryMap = new HashMap<String, Object>();
queryMap.put("username", username);
queryMap.put("roleId", roleId);
queryMap.put("sex", sex);
queryMap.put("offset", page.getOffset());
queryMap.put("pageSize", page.getRows());
ret.put("rows", userService.findList(queryMap));
ret.put("total", userService.getTotal(queryMap));
return ret;
/**
* 添加用户
* @param user
* @return
*/
@RequestMapping(value="/add",method=RequestMethod.POST)
@ResponseBody
public Map<String, String> add(User user)
Map<String, String> ret = new HashMap<String, String>();
if(user == null)
ret.put("type", "error");
ret.put("msg", "请填写正确的用户信息!");
return ret;
if(StringUtils.isEmpty(user.getUsername()))
ret.put("type", "error");
ret.put("msg", "请填写用户名!");
return ret;
if(StringUtils.isEmpty(user.getPassword()))
ret.put("type", "error");
ret.put("msg", "请填写密码!");
return ret;
if(user.getRoleId() == null)
ret.put("type", "error");
ret.put("msg", "请选择所属角色!");
return ret;
if(isExist(user.getUsername(), 0l))
ret.put("type", "error");
ret.put("msg", "该用户名已经存在,请重新输入!");
return ret;
if(userService.add(user) <= 0)
ret.put("type", "error");
ret.put("msg", "用户添加失败,请联系管理员!");
return ret;
ret.put("type", "success");
ret.put("msg", "角色添加成功!");
return ret;
/**
* 编辑用户
* @param user
* @return
*/
@RequestMapping(value="/edit",method=RequestMethod.POST)
@ResponseBody
public Map<String, String> edit(User user)
Map<String, String> ret = new HashMap<String, String>();
if(user == null)
ret.put("type", "error");
ret.put("msg", "请填写正确的用户信息!");
return ret;
if(StringUtils.isEmpty(user.getUsername()))
ret.put("type", "error");
ret.put("msg", "请填写用户名!");
return ret;
// if(StringUtils.isEmpty(user.getPassword()))
// ret.put("type", "error");
// ret.put("msg", "请填写密码!");
// return ret;
//
if(user.getRoleId() == null)
ret.put("type", "error");
ret.put("msg", "请选择所属角色!");
return ret;
if(isExist(user.getUsername(), user.getId()))
ret.put("type", "error");
ret.put("msg", "该用户名已经存在,请重新输入!");
return ret;
if(userService.edit(user) <= 0)
ret.put("type", "error");
ret.put("msg", "用户添加失败,请联系管理员!");
return ret;
ret.put("type", "success");
ret.put("msg", "角色添加成功!");
return ret;
/**
* 批量删除用户
* @param ids
* @return
*/
@RequestMapping(value="/delete",method=RequestMethod.POST)
@ResponseBody
public Map<String, String> delete(String ids)
Map<String, String> ret = new HashMap<String, String>();
if(StringUtils.isEmpty(ids))
ret.put("type", "error");
ret.put("msg", "选择要删除的数据!");
return ret;
if(ids.contains(","))
ids = ids.substring(0,ids.length()-1);
if(userService.delete(ids) <= 0)
ret.put("type", "error");
ret.put("msg", "用户删除失败,请联系管理员!");
return ret;
ret.put("type", "success");
ret.put("msg", "用户删除成功!");
return ret;
/**
* 上传图片
* @param photo
* @param request
* @return
*/
@RequestMapping(value="/upload_photo",method=RequestMethod.POST)
@ResponseBody
public Map<String, String> uploadPhoto(MultipartFile photo,HttpServletRequest request)
Map<String, String> ret = new HashMap<String, String>();
if(photo == null)
ret.put("type", "error");
ret.put("msg", "选择要上传的文件!");
return ret;
if(photo.getSize() > 1024*1024*1024)
ret.put("type", "error");
ret.put("msg", "文件大小不能超过10M!");
return ret;
//获取文件后缀
String suffix = photo.getOriginalFilename().substring(photo.getOriginalFilename().lastIndexOf(".")+1,photo.getOriginalFilename().length());
if(!"jpg,jpeg,gif,png".toUpperCase().contains(suffix.toUpperCase()))
ret.put("type", "error");
ret.put("msg", "请选择jpg,jpeg,gif,png格式的图片!");
return ret;
String savePath = request.getServletContext().getRealPath("/") + "/resources/upload/";
File savePathFile = new File(savePath);
if(!savePathFile.exists())
//若不存在改目录,则创建目录
savePathFile.mkdir();
String filename = new Date().getTime()+"."+suffix;
try
//将文件保存至指定目录
photo.transferTo(new File(savePath+filename));
catch (Exception e)
// TODO Auto-generated catch block
ret.put("type", "error");
ret.put("msg", "保存文件异常!");
e.printStackTrace();
return ret;
ret.put("type", "success");
ret.put("msg", "用户删除成功!");
ret.put("filepath",request.getServletContext().getContextPath() + "/resources/upload/" + filename );
return ret;
/**
* 判断该用户名是否存在
* @param username
* @param id
* @return
*/
private boolean isExist(String username,Long id)
User user = userService.findByUsername(username);
if(user == null)return false;
if(user.getId().longValue() == id.longValue())return false;
return true;
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@include file="../common/header.jsp"%>
<div class="easyui-layout" data-options="fit:true">
<!-- Begin of toolbar -->
<div id="wu-toolbar">
<div class="wu-toolbar-button">
<%@include file="../common/menus.jsp"%>
</div>
<div class="wu-to以上是关于免费分享一个SSM商城管理系统,很漂亮的的主要内容,如果未能解决你的问题,请参考以下文章