Java项目:Springboot快递物流管理系统

这是一个基于SpringBoot、SSM框架和Shiro安全框架开发的物流管理系统,采用RBAC权限设计,包括基础数据、角色、权限、客户、订单管理等模块。系统根据不同角色提供不同权限,如业务员、业务经理、总经理和仓管员等。支持完整的业务流程,并提供了测试账号。运行环境需JDK1.8、Maven和Tomcat8等。
摘要由CSDN通过智能技术生成

作者主页:源码空间站2022

 简介:Java领域优质创作者、Java项目、学习资料、技术互助

文末获取源码

 Express-System

使用 spring boot,基于 ssm 框架和 shiro 安全框架,开发的一个物流管理系统。前端使用的是 H-ui 开源框架,运用了 Bootstrap table、zTree、PageHelper、jQuery validate 等插件。

特点

1. 基于 spring boot、maven 构建;
2. 运用了 spring、spring mvc、mybatis 和 shiro 框架;
3. 采用了 RBAC 的思路设计系统,采用了 Mysql 作为数据库支持;
4. 不同的角色登录系统会有不同的菜单列表,且会根据角色返回特定的数据;
5. 拥有基础数据管理模块,管理员管理模块,角色管理模块,权限管理模块,客户管理模块,订单管理模块和业务处理模块;

6. 能够实现完整的业务流程:添加客户、添加订单、订单处理、财务报表。

细节介绍

1. 业务员访问时,只能访问客户管理、订单管理、业务处理菜单,且只有添加的权力,没有修改和删除的权力;
2. 业务员添加订单时,只能基于自己拥有的客户添加;
3. 业务经理拥有客户管理、订单管理、业务处理的所有功能,可以查看所有业务员的客户和订单;
4. 总经理角色可以查看所有数据,但是没有修改的权力;
5. 仓管员只有业务处理中,测量物品信息和入库的功能,其他数据不可修改;

6. 财务可以查看审核订单价格详情并导出为 excel 表格。

运行环境:

1. JDK 1.8;
2. Maven;
3. Tomcat 8;
4. Mysql 8.0/Mysql 5.7均可。
 

使用前修改 application.properties 里的数据库的连接信息即可。可以通过 dataBase 目录下的 sql 文件创建所需要的表,数据库名字为 logistic_system。

测试账号

> username:admin

> password:123456

运行截图

代码相关

IndexController

@Controller
public class IndexController {
    @RequiresPermissions("system:index")
    @RequestMapping(value = {"/index", ""})
    public String index() {
        return "index";
    }

    @RequestMapping("/welcome")
    @RequiresPermissions("system:index")
    public String welcome() {
        return "welcome";
    }

    @RequestMapping("/login")
    public String login(HttpServletRequest request, Model m) {
        //获取认证失败的错误信息,在Shiro框架的 FormAuthenticationFilter 过滤器中共享
        //共享的属性名称  shiroLoginFailure , 通过 request 获取共享的 shiro 异常的字节码
        String shiroLoginFailure = String.valueOf(request.getAttribute("shiroLoginFailure"));

        if (UnknownAccountException.class.getName().equals(shiroLoginFailure)) {
            m.addAttribute("errorMsg", "账户不存在");
        } else if (IncorrectCredentialsException.class.getName().equals(shiroLoginFailure)) {
            m.addAttribute("errorMsg", "密码错误");
        }

        return "login";
    }

    @RequestMapping("/checkVerifyCode")
    @ResponseBody
    public Boolean checkVerifyCode(String verifyCode, HttpSession session) {
        String randCode = String.valueOf(session.getAttribute("rand"));
        if (randCode.compareToIgnoreCase(verifyCode) == 0) {
            return true;
        }
        return false;
    }

    @RequestMapping("/unauthorized")
    public String unauthorized() {
        return "unauthorized";
    }
}

如果也想学习本系统,下面领取。回复:015springboot 

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 7
    评论
基于Java物流管理系统设计与实现 摘 要:随着世界经济的飞速发展,电商行业的成熟,使得物流行业逐渐变成人们关注的经 济热点。中国与物流相关的年总支出有139000亿元,物流成本占总GDP的20%- 25%,不可否认物流行业的发展潜力一步步的展现了出来。此次的物流公司订单管理系统 是应用于现代物流公司业务设计的,用于提高公司工作效率,主要包括:客户信息管理 、物流信息管理、客户订单管理与货物配送管理。相比传统的物流管理方式如手工录入 ,核查物流信息的方式,本系统节省了人力物力的提高了物流运输的效率,实现了物流 配送的流程智能化,简单化。不仅为物流公司的客户带来便利,企业的效率得到提升。 关键词:物流管理、管理系统、JSP、B/S结构。 Abstract: As the rapid development of the world economy and the maturity of the e-commerce industry, The logistics industry has gradually become an economic hot spot. China's total annual expenditure related to logistics is 139 billion yuan and the cost of logistics accounts for 20 % - 25 % of the total GDP. There is no denying that the development potential of the logistics industry is showing step by step. This order management system of logistics company is applied to the business design of modern logistics company to improve the work efficiency of the company, mainly including customer information management, logistics information management, customer order management and goods distribution management. Compared with traditional logistics management methods such as manual entry and checking of logistics information, this system saves manpower and material resources, improves the efficiency of logistics transportation and realizes the intellectualization and simplification of logistics distribution process. It not only brings convenience to the customers of the logistics company, but also improves the efficiency of the enterprise. Key words: Logistics ,Management systems, JSP, B / S structure. 目 录 摘 要 I Abstract I 目 录 II 1 绪论 1 1.1 研究背景 1 1.2 研究目的与意义 1 1.3 开发工具介绍 2 2 需求分析 4 2.1 需求考察 4 2.2 可行性分析 4 2.2.1 技术的可行性 4 2.2.2 经济的可行性 5 2.2.3 操作可行性 5 2.2.4 法律的可行性 5 2.3 系统用户用例图 5 2.4 功能模块需求分析 7 2.4.1 实现功能 7 2.4.2 功能详解 8 2.5 性能需求 9 2.5.1 系统的安全性 9 2.5.2 数据的完整性 9 2.6 界面需求 9 3 系统分析与设计 10 3.1 数据库的分析与设计 10 3.1.2 数据库的逻辑结构设计 10 3.2 数据分析 10 3.3.1 数据库的E-R图设计 11 3.3.2 数据表的设计 12 3.4 数据库的连接 13 3.5 处理乱码问题 14 4 系统功能实现 16 4.1 系统的主界面设计 16 4.2 管理员功能模块的设计与实现 17 4.3 系统管理的设计与实现 1
评论 7
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值