87 lines
2.8 KiB
Plaintext
87 lines
2.8 KiB
Plaintext
<%
|
|
/**
|
|
* <pre>
|
|
* @Class Name : getSampleInfo.jsp
|
|
*
|
|
* @Description : RESTful API 호출 샘플
|
|
*
|
|
*
|
|
* @프로젝트명: 지방문화원 통합자료관리시스템 구축사업 (2021)
|
|
*
|
|
* </pre>
|
|
*
|
|
* @ ------------ -------- ---------------------------
|
|
* @ 수정일 수정자 수정내용
|
|
* @ ------------ -------- ---------------------------
|
|
* @ 2021. 6. 15. KNKIM 최초 생성
|
|
*
|
|
*
|
|
* @author 이씨플라자 * DIGITALSHIP KNKIM
|
|
* @since 2021. 6. 15.
|
|
* @version 1.0
|
|
*
|
|
*/
|
|
%>
|
|
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui" %>
|
|
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
|
|
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
|
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
|
|
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
|
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
|
<c:set var="pageTitle"><spring:message code="nlib.title"/> - 결과</c:set>
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>${pageTitle}</title>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
|
|
<script type="text/javaScript" language="javascript">
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- javascript warning tag -->
|
|
<noscript class="noScriptTitle"><spring:message code="common.noScriptTitle.msg" /></noscript>
|
|
<form
|
|
action="${pageContext.request.contextPath}/sample/getItemInfo.do"
|
|
method="post">
|
|
|
|
<div class="wTableFrm">
|
|
<!-- 타이틀 -->
|
|
<h2>${pageTitle}</h2>
|
|
|
|
<div style="clear:both;">Server Protocol : ${serverProtocol}</div>
|
|
<div style="clear:both;">Server IP : ${serverIp}</div>
|
|
<div style="clear:both;">Server PORT : ${serverPort}</div>
|
|
|
|
<br />
|
|
<br />
|
|
<br />
|
|
|
|
mngOrgCd : <input name="mngOrgCd" id="mngOrgCd" value="SU01" /> <br />
|
|
masterId : <input name="masterId" id="masterId" value="UR-408A9832D25C42289D9B1FC81FDA8360" /> <br />
|
|
typeDivCd : <input name="typeDivCd" id="typeDivCd" value="IT_MUSE" /> <br />
|
|
|
|
<br />
|
|
resultCode : <input name="resultCode" id="resultCode" value="${resultCode}" /> <br />
|
|
resultMessage : <input name="resultCode" id="resultCode" value="${resultMessage}" /> <br />
|
|
info.title : <input name="info.name" id="info.name" value="${info.title}" /> <br />
|
|
info.typeCodeNm : <input name="info.name" id="info.name" value="${info.typeCodeNm}" /> <br />
|
|
info.masterId : <input name="info.name" id="info.name" value="${info.masterId}" /> <br />
|
|
<br />
|
|
|
|
<div style="clear:both;"></div>
|
|
|
|
<input type="submit" id="btnSubmit" name="btnSubmit" value="전송" />
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|