일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- 전자정부프레임워크
- MFC
- oracle
- ibsheet
- Google Map
- JDOM
- sencha touch
- appspresso
- jsr 296
- MySQL
- Struts
- iBATIS
- swingx
- dock
- PLSQL
- Android
- GPS
- Ajax
- tomcat
- Spring
- 가우스
- node.js
- JSON
- jQuery
- phonegap
- rowspan
- 선택적조인
- PHP
- Eclipse
- WebLogic
- Today
- Total
목록전체 글 (633)
Where The Streets Have No Name
......... .................. ............ ............ 0 톰캣 서버가 시작하는 시점은 아니고, 컨텍스트의 웹 애플리케이션이 톰캣 서버에 의해 인식되는 시점입니다. load-on-startup 엘리먼트에 적어준 숫자가 음의 정수인 경우: 그 서블릿에 접근될 때 (즉, load-on-startup 엘리먼트가 없는 경우와 동일함) 0 이거나 양의 정수인 경우: 그 서블릿이 배치(deploy)될 때 (즉, 컨텍스트가 인식될 때) 숫자가 작은 것 부터 먼저 로딩된다.
javascript:alert(document.cookie)주소창에 입력해보세요.
function getObject(objectId) { // checkW3C DOM, then MSIE 4, then NN 4. // if(document.getElementById && document.getElementById(objectId)) { return document.getElementById(objectId); } else if (document.all && document.all(objectId)) { return document.all(objectId); } else if (document.layers && document.layers[objectId]) { return document.layers[objectId]; } else { return false; } }
=0){ int i=Agent.indexOf('M',2);//두번째 'M'자가 있는 위치 String IEV=Agent.substring(i+5,i+8); if(IEV.equalsIgnoreCase("5.5")){ response.setHeader("Content-Disposition", "filename="+new String(filename.getBytes("euc-kr"),"8859_1")); }else{ response.setHeader("Content-Disposition", "attachment;filename="+new String(filename.getBytes("euc-kr"),"8859_1")); } }else{ response.setHeader("Content-Disposition",..
DispatchAction을 이용해서 회원접근을 관리하는 방법이다. 급조한 거라 이런식으로 하면된다는 것이고 나머지는 응용해서 하면된다. GuestLoginAction 클래스로 만들고 GuestAction 에서 이를 상속받으면 간단하게 해결된다. * GuestLoginAction import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionForward; import org.apache...