作者主页:舒克日记
简介:Java领域优质创作者、Java项目、学习资料、技术互助
文中获取源码
项目介绍
功能包括:商品分类,供货商管理,库存管理,销售统计,用户及角色管理,等等功能。项目采用maven聚合的SSM框架。
环境要求
1.运行环境:最好是java jdk1.8,我们在这个平台上运行的。其他版本理论上也可以。
2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA;
3.tomcat环境:Tomcat7.x,8.X,9.x版本均可
4.硬件环境:windows7/8/10 4G内存以上;或者Mac OS;
5.是否Maven项目:是;查看源码目录中是否包含pom.xml;若包含,则为maven项目,否则为非maven.项目
6.数据库:MySql5.7/8.0等版本均可;
技术栈
运行环境:jdk8 + tomcat9 + mysql5.7 + windows
服务端技术:Spring Boot+ Mybatis +VUE
使用说明
1.使用Navicati或者其它工具,在mysql中创建对应sq文件名称的数据库,并导入项目的sql文件;
2.使用IDEA/Eclipse/MyEclipse导入项目,修改配置,运行项目;
3.将项目中config-propertiesi配置文件中的数据库配置改为自己的配置,然后运行;
运行指导
idea导入源码空间站顶目教程说明(Vindows版)-ssm篇:
http://mtw.so/5MHvZq
源码地址:http://codegym.top
运行截图
文档截图
项目截图
代码
package com.lyyzoo.gpss.web.sale;import com.lyyzoo.bean.Result;
import com.lyyzoo.data.domain.Page;
import com.lyyzoo.gpss.entity.sale.Customer;
import com.lyyzoo.gpss.service.sale.CustomerService;
import com.lyyzoo.gpss.web.BaseController;
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.ResponseBody;/*** <p>** @author bojiangzhou* @date 2017-04-06*/
@Controller
@RequestMapping("/admin/customer")
public class CustomerController extends BaseController {@Autowiredprivate CustomerService customerService;@RequestMapping(value = {"", "/"})public String index(){return "/sale/customer";}@RequestMapping("/page")@ResponseBodypublic Page<Customer> page(String name, int pageNumber, int pageSize){return customerService.page(name, pageNumber, pageSize);}@RequestMapping(value = "/save", method = RequestMethod.POST)@ResponseBodypublic Result save(Customer customer){return customerService.save(customer, getCurrentUser());}@RequestMapping("/remove")@ResponseBodypublic Result remove(Long id){return customerService.remove(id, getCurrentUser());}}