가드존 더미 페이지 추가
parent
279895dee4
commit
13f8f5da69
@ -0,0 +1,18 @@
|
||||
package externalsystem.ino.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="가드존", value="/guardzone")
|
||||
public class GuardzoneController extends AbstractController {
|
||||
|
||||
@RequestMapping(name="가드존", value="")
|
||||
public ModelAndView guardzone() {
|
||||
ModelAndView mav = new ModelAndView("ino/guardzone/guardzone");
|
||||
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>
|
||||
<img alt="" src="/resources/img/guardzone.png">
|
||||
</body>
|
||||
</html>
|
Binary file not shown.
After Width: | Height: | Size: 55 KiB |
Loading…
Reference in New Issue