12345678910111213141516171819 |
- package com.xt.dsp.controller;
- import org.springframework.stereotype.Controller;
- import org.springframework.web.bind.annotation.RequestMapping;
- @Controller
- @RequestMapping("index")
- public class IndexCtl {
- /**
- * 主画面
- *
- * @return
- */
- @RequestMapping("")
- public String main() {
- return "global/index";
- }
- }
|