feat: 모바일페이지 JSP 설정 및 테스트
parent
5bbc826d75
commit
65667ccb76
@ -0,0 +1,30 @@
|
|||||||
|
package kr.xit.biz.mbl.web;
|
||||||
|
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
import org.springframework.web.servlet.ModelAndView;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <pre>
|
||||||
|
* description : 전자문서 중개자 모바일 페이지 API Controller
|
||||||
|
* - mens-web에서 호출
|
||||||
|
* packageName : kr.xit.biz.mbl.web
|
||||||
|
* fileName : MobilePageController
|
||||||
|
* author : limju
|
||||||
|
* date : 2023-08-31
|
||||||
|
* ======================================================================
|
||||||
|
* 변경일 변경자 변경 내용
|
||||||
|
* ----------------------------------------------------------------------
|
||||||
|
* 2023-08-31 limju 최초 생성
|
||||||
|
*
|
||||||
|
* </pre>
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
public class TestController {
|
||||||
|
|
||||||
|
|
||||||
|
@RequestMapping(value = "/index")
|
||||||
|
public ModelAndView test() {
|
||||||
|
return new ModelAndView("/index");
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue