jeus 웹 접근 경로 context root 설정
2011. 2. 25. 03:07
<?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 과 같다.
'프로그래밍' 카테고리의 다른 글
loopback adapter 설치 (0) | 2011.03.13 |
---|---|
java.lang.ClassNotFoundException: org.apache.oro.text.regex.MalformedPatternException (0) | 2011.03.11 |
action->jsp excel file 다운로드 (0) | 2011.02.24 |
GET 방식 한글 꺠짐 해결법 (0) | 2011.02.24 |
겸손한 자바스크립트 (0) | 2010.12.12 |
action->jsp excel file 다운로드
2011. 2. 24. 21:09
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>
테이블의 내용이 엑셀 형식으로 다운로드 된다.
'프로그래밍' 카테고리의 다른 글
java.lang.ClassNotFoundException: org.apache.oro.text.regex.MalformedPatternException (0) | 2011.03.11 |
---|---|
jeus 웹 접근 경로 context root 설정 (0) | 2011.02.25 |
GET 방식 한글 꺠짐 해결법 (0) | 2011.02.24 |
겸손한 자바스크립트 (0) | 2010.12.12 |
숫자, 하이픈 입력가능 (0) | 2010.12.06 |