zoukankan      html  css  js  c++  java
  • SpringMVC从一个controller跳转到另一个controller

    return "redirect:……路径……";

        @RequestMapping(value = "/index", method = RequestMethod.GET)
        public String index(ModelMap model) {
            Admin admin = adminService.getCurrent();
            if(admin.getSeller()!=null)
            {
                return "redirect:/admin/seller/order/list";
            }
            model.addAttribute("systemName", systemName);
            model.addAttribute("systemVersion", systemVersion);
            model.addAttribute("systemDescription", systemDescription);
            model.addAttribute("systemShowPowered", systemShowPowered);
            model.addAttribute("javaVersion", System.getProperty("java.version"));
            model.addAttribute("javaHome", System.getProperty("java.home"));
            model.addAttribute("osName", System.getProperty("os.name"));
            model.addAttribute("osArch", System.getProperty("os.arch"));
            model.addAttribute("serverInfo", servletContext.getServerInfo());
            model.addAttribute("servletVersion", servletContext.getMajorVersion() + "." + servletContext.getMinorVersion());
            model.addAttribute("waitingPaymentOrderCount", orderService.waitingPaymentCount(null));
            model.addAttribute("waitingShippingOrderCount", orderService.waitingShippingCount(null));
            model.addAttribute("marketableProductCount", productService.count(null, true, null, null, false, null, null));
            model.addAttribute("notMarketableProductCount", productService.count(null, false, null, null, false, null, null));
            model.addAttribute("stockAlertProductCount", productService.count(null, null, null, null, false, null, true));
            model.addAttribute("outOfStockProductCount", productService.count(null, null, null, null, false, true, null));
            model.addAttribute("memberCount", memberService.count());
            model.addAttribute("unreadMessageCount", messageService.count(null, false));
            return "/admin/common/index";
        }
  • 相关阅读:
    全排列(next_permutation)
    Codeforces Round #321 (Div. 2)C(tree dfs)
    cf_ducational Codeforces Round 16_D(gcd)
    cf455a(简单dp)
    cf584a(水题)
    cf112a(水题)
    冒泡排序
    Python内置类型性能分析
    常见时间复杂度
    MongoDB 备份
  • 原文地址:https://www.cnblogs.com/rixiang/p/5053206.html
Copyright © 2011-2022 走看看