SysPageController.java 554 B

12345678910111213141516171819202122
  1. package com.kmall.admin.controller;
  2. import org.springframework.stereotype.Controller;
  3. import org.springframework.web.bind.annotation.PathVariable;
  4. import org.springframework.web.bind.annotation.RequestMapping;
  5. /**
  6. * 系统页面视图
  7. *
  8. * @author Scott
  9. * @email
  10. * @date 2016年11月24日 下午11:05:27
  11. */
  12. @Controller
  13. public class SysPageController {
  14. @RequestMapping("{module}/{url}.html")
  15. public String page(@PathVariable("module") String module, @PathVariable("url") String url) {
  16. return module + "/" + url + ".html";
  17. }
  18. }