123456789101112131415161718192021 |
- package com.baomidou.test.controller;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.stereotype.Controller;
- /**
- * <p>
- * VIEW 前端控制器
- * </p>
- *
- * @author hubin
- * @since 2018-03-20
- */
- @Controller
- @RequestMapping("/test/abc")
- public class AbcController {
- }
|