qr서비스 더미 페이지 추가
parent
661b88d0b7
commit
c8e1ca35c7
@ -0,0 +1,19 @@
|
|||||||
|
package externalsystem.jinwoo.web;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Controller;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.servlet.ModelAndView;
|
||||||
|
|
||||||
|
import cokr.xit.foundation.web.AbstractController;
|
||||||
|
|
||||||
|
@Controller
|
||||||
|
@RequestMapping(name="진우QR서비스", value="/is/qrservice")
|
||||||
|
public class QrServiceController extends AbstractController {
|
||||||
|
|
||||||
|
@RequestMapping(name="큐알서비스", value="")
|
||||||
|
public ModelAndView guardzone() {
|
||||||
|
ModelAndView mav = new ModelAndView("jinwoo/qrservice/qrservice");
|
||||||
|
return mav;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1,12 @@
|
|||||||
|
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
||||||
|
pageEncoding="UTF-8"%>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Insert title here</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
렌트카 큐알서비스
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Reference in New Issue