<%@page import="java.net.URLDecoder"%>
<%@page import="java.net.URLEncoder"%>
<%@page import="smartsuite.security.AesUtil"%>
<%@page import="com.google.common.base.Strings"%>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
AesUtil aesUtil = new AesUtil();

String srcParam = request.getParameter("srcParam");
String encParam = "";

if (!Strings.isNullOrEmpty(srcParam))
{
    out.println(String.format("<br/>%s", srcParam));
    
    encParam = URLEncoder.encode(aesUtil.encrypt(srcParam), "UTF-8");
    out.println(String.format("<br/>%s", encParam));
    
    //String decParam = URLDecoder.decode(encParam, "UTF-8");
    //out.println(String.format("<br/>%s", aesUtil.decrypt(decParam)));
}

out.println("<br/><br/>");
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Insert title here</title>
    
    <script type="text/javascript">
    function openPopup(urlID)
    {
        var encParam = document.getElementById("encParam");
        
        if (encParam.value.replace(/ /g, "").length == 0)
        {
            alert("파라메터를 암호화하세요.");
            return;
        }
        
        var domain = document.getElementById(urlID);
        var url = domain.value + "?" + encParam.value;
        
        window.open(url, "조회", "width=1400, height=800, status=no, locationbar=no");
    }
    </script>
</head>
<body>
    <form id="frm" method="post">
        <table>
            <colgroup>
                <col width="100"/>
                <col/>
                <col width="100"/>
            </colgroup>
            <tr>
                <th>암호화전</th>
                <td><input type="text" id="srcParam" name="srcParam" style="width:600px" value="vd_cd=VA100199&prod_cd=110027936"/></td>
                <td><button type="submit">암호화</button></td>
            </tr>
            <tr>
                <th>암호화후</th>
                <td><input type="text" id="encParam" name="encParam" style="width:600px" value="<%=encParam %>"/></td>
                <td></td>
            </tr>
            <tr>
                <th>로컬 URL</th>
                <td><input type="text" id="local" name="domain" style="width:600px" value="http://127.0.0.1:8080/awListPopup.do"/></td>
                <td><button type="button" onclick="openPopup('local')">링크열기</button></td>
            </tr>
            <tr>
                <th>개발 URL</th>
                <td><input type="text" id="dev" name="domain" style="width:600px" value="http://dev.domain.com/awListPopup.do"/></td>
                <td><button type="button" onclick="openPopup('dev')">링크열기</button></td>
            </tr>
            <tr>
                <th>운영 URL</th>
                <td><input type="text" id="prd" name="domain" style="width:600px" value="http://prd.domain.com/awListPopup.do"/></td>
                <td><button type="button" onclick="openPopup('prd')">링크열기</button></td>
            </tr>
        </table>
    </form>
</body>
</html>

 

 


RootController.java

    @RequestMapping(value = "awListPopup.do", method = RequestMethod.GET)
    public ModelAndView awListPopup(HttpServletRequest request, HttpServletResponse response)
    {
        AesUtil aesUtil = new AesUtil();
        ModelAndView model = new ModelAndView();
        model.setViewName("awListPopup");
        model.addObject("_cacheBust", statefulService.getCacheBust());
        
        try 
        {
            String _encQueryString = request.getQueryString();
            String _decQueryString = aesUtil.decrypt(URLDecoder.decode(_encQueryString, "UTF-8"));
        
            if (!Strings.isNullOrEmpty(_decQueryString))
            {
                String [] _params = _decQueryString.split("&");
                
                for (String _set : _params)
                {
                    String [] _param = _set.split("=");
                    model.addObject(_param[0], _param[1]);
                }
            }
        
        }
        catch (Exception e)
        {
            // TODO Auto-generated catch block
            e.printStackTrace();
            System.out.print(e.getMessage());
        }
        
        return model;
    }