• 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";
        }
  • 相关阅读:
    C++开源库
    Boost ASIO proactor 浅析
    ehcache
    http://www.servicestack.net/
    hortonworks
    (总结)Nginx 502 Bad Gateway错误触发条件与解决方法
    VMware vSphere虚拟化学习手册下部
    精确字符串匹配(BM算法) [转]
    Linux下基本TCP socket编程之服务器端
    How To Use Linux epoll with Python
  • 原文地址:https://www.cnblogs.com/rixiang/p/5053206.html
Copyright © 2020-2023  润新知