일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- tomcat
- Ajax
- Eclipse
- PLSQL
- 전자정부프레임워크
- 선택적조인
- JDOM
- swingx
- MySQL
- ibsheet
- jQuery
- iBATIS
- 가우스
- PHP
- jsr 296
- Android
- Struts
- phonegap
- Spring
- Google Map
- dock
- sencha touch
- JSON
- GPS
- appspresso
- rowspan
- MFC
- WebLogic
- node.js
- oracle
- Today
- Total
목록Developement (559)
Where The Streets Have No Name
출처 : http://www.okjsp.pe.kr/bbs?act=VIEW&seq=27259&bbs=bbs4&keyfield=content&keyword=&pg=0 1. 첫째는 옛날 방식으로 JSP페이지에 직접 에러페이지를 표시해주는 방식입니다. 이때 error.jsp에 라고 선언해야합니다. JSP페이지에 에러가 발생하면 error.jsp로 제어가 넘어가고 error.jsp에서는 "exception"이라는 implicit 객체를 사용하여 에러메시지를 보여줄 수 있습니다. 에러를 우아하게 처리하기 위해서는 JSP페이지마다 errorPage속성을 지정해야하는 불편이 있었던 방식입니다. 2. 둘째는 서블릿2.3에서 추가된 것으로, web.xml에 에러유형별로 에러페이지를 지정해 주는 좀더 진화된 방식입니다.(첨..
출처 : http://blog.naver.com/tear230/100017622655 자바스크립트에서 문자열을 합치는 방법 글을 읽고 조금 변경해서 올려봅니다.
이 문서는 기술지원 또는 개발 시 java.lang.OutOfMemoryError 를 만났을 때 원인 파악 및 해결방안 입니다.java.lang.OutOfMemoryError 에는 크게 2가지 패턴이 있다고 볼 수 있습니다.(전적으로 개인적인 생각이지만..^^)Java의 heap 메모리가 정말로 Full 되서 나는 종류가 있고 그렇지 않은데도 나는 종류가 있습니다.그 둘 중에 어는 것 인지부터 가려내는 것이 가장 먼저 선행되어야 합니다.Java 가상머신에는 메모리 구조가 여러단계로 나뉘어 져 있으므로 어느 영역에 의해 java.lang.OutOfMemoryError 가 나는지 알기 위해 JAVA OPTION으로 싸이트가 안정화 되기 전까진 –verbosegc 또는 -XX:+PrintGCDetails옵션을..
PoolManager pool = PoolManager.getInstance(); Connection conn = null; PreparedStatement pstmt = null; try { conn = (Connection) pool.getConnection(); pstmt = conn.prepareStatement("delete from neouserTable where name = ?"); for (int i=0; i < daumid.length; i++) { pstmt.setString (1, name[i]); pstmt.addBatch(); } int results[] = pstmt.executeBatch(); returnValue ="true"; } catch (BatchUpdateExcep..
출처 : http://www.zdnet.co.kr/builder/dev/java/0,39031622,39147106,00.htm 조인포인트 횡단 관심 모듈의 기능이 삽입되어 동작할 수 있는 실행 가능한 특정위치를 말한다. 예를 들어 메쏘드가 호출되는 부분 또는리턴되는 시점이 하나의 조인포인트(jointpoint)가 될 수 있다. 또 필드를 액세스하는 부분, 인스턴스가 만들어지는 지점,예외가 던져지는 시점, 예외 핸들러가 동작하는 위치, 클래스가 초기화되는 곳 등이 대표적인 조인포인트가 될 수 있다. 각각의조인포인트들은 그 안에 횡단 관심의 기능이 AOP에 의해 자동으로 추가되어져서 동작할 수 있는 후보지가 되는 것이다. 포인트컷 포인트컷(pointcut)은 어떤 클래스의 어느 조인포인트를 사용할 것인지를..
JDBC makes it easy for Java applications to access and manipulate data in databases. However there are parts ofthe API that are somewhat primitive. Many host languages provide support for named host variables in SQL statementsand stored procedures. Java, via JDBC does not provide this capability. Two statement binders have been createdthat allow the use of named host variables. This reduces the ..
http://www.javaworld.com/javaworld/jw-04-2007/jw-04-jdbc.html The problems with PreparedStatement stem from its syntax for parameters. Parameters are anonymous and accessed by index as in the following: PreparedStatement p = con.prepareStatement("select * from people where (first_name = ? or last_name = ?) and address = ?"); p.setString(1, name); p.setString(2, name); p.setString(3, address); Fo..
http://www.okjsp.pe.kr/seq/16790
select decode(to_char(to_date(:p_day), 'day'), '수요일', to_date(:p_day), next_day(to_date(:p_day), '수요일')) - 13 as p_week_start, decode(to_char(to_date(:p_day), 'day'), '수요일', to_date(:p_day), next_day(to_date(:p_day), '수요일')) - 7 as p_week_end, decode(to_char(to_date(:p_day), 'day'), '수요일', to_date(:p_day), next_day(to_date(:p_day), '수요일')) - 6 as c_week_start, decode(to_char(to_date(:p_day), 'da..
view > toad options > editor > behavior 에서 languages란에 있는 edit버튼을 클릭하면 됨
프로그램 : http://fabforce.net/ 한글패치 : http://www.yashalog.net/61
TypePrefixExampleArray aaValuesBoolean b bFoundFloat (Number) f fValueFunction fn fnMethodInteger (Number) i iValueObject o oTypeRegular Expression re rePatternString s sValueVariant (can be any type) v vValue
wtp상에서 oc4j plug-in이 설치된 위치 : c:\eclipse3x\plugins\org.eclipse.jst.server.generic.oc4j_1.5.0.v200606130315 oc4j가 설치된 위치 : c:\oc4j 이문서에서는 oc4j_home은 c:\oc4j 로 설정한다. 1. plugin.properties (수정) # ============ oc4j904 ==================== oracle.9_0_4.runtime.name=Oracle OC4J Standalone 9.0.4 oracle.9_0_4.runtime.description=Oracle OC4J 9.0.4 runtime oracle.9_0_4.server.name=Oracle OC4J Standalone Se..
http://www.dbguide.net/know/know102001.jsp?mode=view&divcateno=32&divcateno_=30&pg=6&idx=2717 http://www.dbguide.net/know/know102001.jsp?mode=view&divcateno=32&divcateno_=30&pg=5&idx=2774
Introduction File uploading thru HTTP is always big problem for websites. There are some restrictions from client and server sides. But with growing internet channels bandwidth one of major problem is file size. Sometimes it’s impossible to send 500MB file to webserver due to request length limit. One of the workaround is to increase maximal request length on webserver, but it may cause server r..
http://kwon37xi.egloos.com/2558053
Exploring Client-Side Cross Browser XML Data-Binding - Part 1 http://jsontools.sourceforge.net/
/* * 출처 : http://beppu.lbox.org/articles/2006/09/06/actsasaspect */ functionactsAsAspect(object) { object.yield = null; object.rv = { }; object.before = function(method, f) { var original = eval("this." + method); this[method] = function() { f.apply(this, arguments); return original.apply(this, arguments); }; }; object.after = function(method, f) { var original = eval("this." + method); this[met..