<?xml version="1.0" encoding="UTF-8"?>
<jeus-web-dd xmlns="http://www.tmaxsoft.com/xml/ns/jeus">
        <context-path>/</context-path>
        <auto-reload>
            <enable-reload>true</enable-reload>
            <check-on-demand>true</check-on-demand>
        </auto-reload>
</jeus-web-dd>

 

context-path 부분에 경로를 설정한다.

기본 / 는 도메인 주소 입력시 접근이 된다고 보면 된다.

'/admin' 으로 설정이 돤다면 웹에서 접근 경로는 

 www.test.com/admin 과 같다.



action 에서 데이터를 가지고 
표시할 JSP에서 다음 설정 후. 
 
<%
    response.setHeader("Content-Disposition", "attachment; filename=excelfile.xls");
    response.setHeader("Content-Description", "JSP Generated Data");
    response.setContentType("application/vnd.ms-excel");
%>
 
 
<body>
<table>
<tr><td>.....   ..</td></tr>
</table>
</body>
테이블의 내용이 엑셀 형식으로 다운로드 된다.

+ Recent posts