JAVA2014. 2. 26. 18:24

 


[오류] com.ibatis.common.jdbc.exception.NestedSQLException
[해결] 쿼리 안에 -- #파라미터#  를 주석으로 처리했을 경우 발생할 수 있음

 
[오류]tms.rsf.client.RESTClient.createUri(RESTClient.java)
[해결]호출 URI에 공백이 있거나 잘못 되었을 경우, URI 확인하자

 

 

[오류] java.lang.NoClassDefFoundError: javax/mail/Address 
 mail.jar download: http://www.oracle.com/technetwork/java/index-138643.html
 activation.jar download: http://java.sun.com/products/archive/javabeans/jaf102.html

 mail.jar 톰캣의 lib 폴더에 넣고 서버 다시실행하면된다
 


[오류] java.lang.NoClassDefFoundError: org/springframework/web/util/Log4jConfigListener
[해결]
  1. ?? 이클립스 Project explorer에서 프로젝트 refresh 하고
  2. 이클립스 다시 실행
  3. jboss 재시작하면 없어짐 
 주의)  로그파일 Log4jConfigListener error 위에 다른 오류 있을 수 있음


[오류]-[JSTL] The method setText(boolean) in the type IfTag 오류 
출처 - http://pwu-developer.blogspot.kr/2009/11/jstl-test-condition-and-trailing-spaces.html
원인 : <c:if test="${not empty sp.mouse.strain}         "> 의 공백
해결 : <c:if test="${not empty sp.mouse.strain}"> 공백 없앰으로 오류해결
 

 

'JAVA' 카테고리의 다른 글

[펌]jar 내부 파일 읽기  (0) 2014.04.19
[펌]Java Architecture for XML Binding (JAXB) 예제  (0) 2014.03.03
Socket으로 Mail 전송 샘플  (0) 2014.02.24
SMTP 서버를 통해 메일 전송  (0) 2014.02.19
java.lang.reflect.Method 샘플  (0) 2013.12.05
Posted by 선한열심