일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Flex 2.0 Lecture
- Renderer
- events
- java web start
- Jakarta Project
- data
- FLEX2.0
- 신혼여행
- 소스
- download
- Upload Component
- flex
- 3d
- LOG4J
- 자바스크립트
- Java
- JSP
- Java Tips
- Spring
- examples
- Flex 2.0
- xml
- objective-c
- Linux
- Melbourne
- 정규식
- Column Chart
- Session
- ActionScript 3.0
- Spring Framework
- Today
- Total
목록Development (23)
宇而靜...
project name="MDMS" default="compile" basedir="D:/Business/Project/MDMS/WEB-INF" > target name="compile" depends="init, clean"> ${jar.dir}/commons-logging-api-1.1.1.jar; ${jar.dir}/cos.jar"/> /target> target name="init" > /target> target name="clean" description="Delete old build and dist directories"> /target>/project>
FileSystemXmlApplicationContext appContext = new FileSystemXmlApplicationContext( new String[]{ "C:/...../context1.xml", "C:/...../context2.xml", ..... } ); 라고 코딩한 뒤 appContext.getBean(String beanName) 으로 Bean을 가져와서 알맞은 클래스로 캐스팅하면 된다. classpath가 알맞게 지정되어 있다면 classpath로도 가져올 수 있다.(ClassPathXmlApplicationContext) context내의 파일들이 classpath위주로 셋팅이 되어 있으므로 될 수 있으면 classpath를 권장한다.
Reflection을 이용하여 Object 안에 있는 String 필드의 null을 ""으로 치환한다. public static void clearNull(Object obj){ if (obj == null){ throw new NullPointerException( "[clearNull() Using ERROR] : Plz be sure the object is not null"); } Field afield[] = obj.getClass().getFields(); for (int i = 0; i < afield.length; i++){ try { String s = afield[i].getType().getName(); if (s.equals("java.lang.String")){ if(afield[..
웹 어플리케이션에서 각 페이지마다 세션체크를 하게 되는데 이럴 때 Spring Framework의 Interceptor를 이용하면 한번의 코딩으로 모든 페이지를 체크할 수 있게 된다. import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.ModelAndViewDefiningException; import org.springframework.web.servlet.handler.HandlerInterceptorAdapter; publi..
현 재 많은 국제 공인 자격증(SCJP, MCSE, OCP, CCNA)들이 알려져 있습니다만 자격증의 실효성에 대해서는 아직도 논란이 많습니다. 본 기사에서 소개할 자격증도 그리 어렵지 않는 국제 공인 자격증입니다. 하지만 본 기사에서는 실효성 여부보다는 새로운 자격증의 소개에 중점을 두어 설명하겠습니다. SCWCD를 알려주마! 갑자기 무슨 소린가 하셨을 겁니다. SCWCD는 썬에서 시행하고 있는 공인 자격증 시험 중에 하나인 Sun Certified Web Component Developer for J2EE Java 2 Platform의 약자이며 국내에서는 마케팅 전략에 의해서 SCCD란 이름으로 알려져 있습니다. 제 추측이지만 SCJP, SCJD, SCFJ 이렇게 네 글자로 통일하기 위해서 인 듯 싶..
보호되어 있는 글입니다.
자바기술에 대한 전체적인 정의가 간략히 잘 되어있는 사이트 http://www.javabeat.net/
대상 테이블이 없이 Create까지 같이 Insert 하기 SELECT * INTO 대상 테이블 FROM 원본 테이블 * insert into 는 대상 테이블이 존재하여야하고 select into 는 대상 테이블이 없어도 된다.
보호되어 있는 글입니다.
보호되어 있는 글입니다.