Java项目:物流快递管理系统(java+SSM+jsp+mysql)——计算机毕业设计

这是一个基于Java+SSM+jsp+mysql的物流快递管理系统,实现了前端公司主页、政策、新闻咨询等功能,以及后台的菜单、角色、用户、订单等管理。用户可以在线下单、查询物流,后台具备权限管理与日志记录。
摘要由CSDN通过智能技术生成

本系统主要实现的功能有:
前端公司主页、政策、新闻咨询、联系地址、在线留言、在线下单,查询快递物流信息等,
后台主要的功能有:菜单管理、角色管理、用户管理、新闻管理、日志管理、留言管理、订单管理等。
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
前台登录注册控制层:
/**

  • 前台登录注册控制层
    */
    @Controller
    @RequestMapping("/home/index")
    public class HomeLoginController {

    @Autowired
    private HomeUserService homeUserService;

    /**

    • 跳转到登录页面
    • @return
      */
      @RequestMapping(value="/login",method= RequestMethod.GET)
      public String login(){
      return “home/login”;
      }

    /**

    • 用户登录
    • @param mobile
    • @param password
    • @return
      */
      @RequestMapping(value="/login",method= RequestMethod.POST)
      @ResponseBody
      public Result login(@RequestParam(“mobile”)String mobile,@RequestParam(“password”)String password) {
      //正则验证输入的手机号是否合法
      String checkPhone = “^1[3|4|5|7|8]\d{9}$”;
      Pattern r = Pattern.compile(checkPhone);
      Matcher m = r.matcher(mobile);
      if (!m.matches()) {
      return Result.error(CodeMsg.HOMEUSER_MOBILE_ERROR);
      }
      HomeUser byMobile = homeUserService.findByMobile(mobile);
      if (byMobile == null){
      return Result.error(CodeMsg.HOMEUSER_NO_EXIST);
      }
      if (byMobile.getStatus() == 0){
      return Result.error(CodeMsg.HOMEUSER_STATUS_ERROR);
      }
      if (!byMobile.getPassword().equals(password)){
      return Result.error(CodeMsg.HOMEUSER_PASSWORD_ERROR);
      }
      SessionUtil.set(SessionConstant.SESSION_HOME_USER_LOGIN_KEY, byMobile);
      return Result.success(true);

    }

    /**

    • 跳转到注册页面
    • @return
      */
      @RequestMapping(value="/register",method= RequestMethod.GET)
      public String register(){
      return “home/register”;
      }

    /**

    • 用户注册
    • @param homeUser
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
基于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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值