일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- RADIO
- java
- DB
- 톰캣
- 오라클
- 호환성
- json
- checbox
- jquery
- @RequestBody
- maven
- php
- null
- 이클립스
- Oracle
- switch
- 날짜
- JSTL
- 스크립트
- 전자정부 표준프레임워크
- spring form tag
- SSL
- 네이버스마트 에디터
- HTML5
- html
- 문자열
- exception
- MYSQL
- 웹 플랫폼 설치 관리자
- 한글
- Today
- Total
목록전자정부표준프레임워크/Exception 및 Error (48)
개인적인 정리
Dots are not allowed in element names, please remove it from SysLog.logDeleteSysLogSummary 1 2 3 4 5 ~~~~ cs 위와 같은 상태에서 aaa.insertAAA 를 insertAAA 로 변경하면 된다. MyBatis 에서 . 이 들어가서 발생한 문제로 .을 제거한다.
Caused by: org.apache.ibatis.type.TypeException: Error setting non null for parameter #1 with JdbcType null . Try setting a different JdbcType for this parameter or a different configuration property. Cause: java.sql.SQLException: Parameter index out of range (1 > number of parameters, which is 0). 내 경우 MyBatis 에서 작은 따옴표를 잘못써서 발생한 오류인데, 에러를 찾기 헷갈리고 오래 걸렸던 이유가 작은 따옴표의 위치가 변수가 바인딩 되기 한참전에 잘못되었었다. ..
Neither BindingResult nor plain target object for bean name 'command' available as request attribute 내내 잘 쓰던 코드를 가져다가 다른 이클립스에 적용을 해보니 위와 같은 오류가 발생하였다. ERROR [org.springframework.web.servlet.tags.form.HiddenInputTag] Neither BindingResult nor plain target object for bean name 'command' available as request attribute 조금 더 살펴보니 위와 같이 나와서 가 문제인가 싶어서도 한참 고민하게 되었다. 에러가 난 Controller 의 소스는 아래와 같다. 1 2 ..
org.springframework.context.NoSuchMessageException: No message found under code 'debug.properties.filename' for locale 'ko_KR'. xml 파일을 클래스 파일에서 불러오는 가운데 위와 같은 오류가 났다. 그래서 아래와 같이 xml 파일에 추가를 하니 에러가 나지 않은 경우가 있었다. 1 2 3 4 5 6 7 8 9 10 true classpath:/egovframework/egovProps/globals Colored by Color Scripter cs
java.lang.ClassCastException: org.apache.taglibs.standard.tlv.JstlCoreTLV cannot be cast to jakarta.servlet.jsp.tagext.TagLibraryValidator 이클립스 환경에서 tomcat10 버전으로 돌렸을 때 발생하였다. tomcat10을 꼭 쓰지 않아도 된다면 tomcat 9이하 버전으로 내려주니 이상없이 동작한다.
log4j의 보안취약점 조치를 한 후에(업그레이드) 다음과 같은 오류가 발생하였다. java.lang.NoClassDefFoundError: org/apache/logging/log4j/util/ReflectionUtil 프로젝트 우클릭 > Maven> Update Project 을 해준다. 출처 https://www.egovframe.go.kr/home/qainfo/qainfoRead.do?pagerOffset=0&searchKey=&searchValue=&menuNo=69&qaId=QA_00000000000021010 묻고 답하기 | 표준프레임워크 포털 eGovFrame 처리중입니다. 잠시만 기다려주십시오. www.egovframe.go.kr
안에 name 속성을 두번써서 발생하였다. 아래와 같이 써서 문제가 발생한 것인데, name="mberVO" 를 하나 삭제하니 오류가 나오지 않는다. 1 2 Colored by Color Scripter cs 아래와 같이 변경. 1 2 Colored by Color Scripter cs
Neither BindingResult nor plain target object for bean name 'searchVO' available as request attribute 1 2 Colored by Color Scripter cs jsp 단에서 위와 같은 오류가 발생하였다. searchVO로 지정된 게 없어서 발생하는 오류 해당 jsp를 호출하는 컨트롤러에 searchVO에 해당하는 것을 지정해준다. 1 model.addAttribute("searchVO", resultList); cs 한줄 추가해준다. 혹은 아래와 같이 해줄수도 있다. 1 2 3 4 5 6 public String selectAAAA(@ModelAttribute("searchVO") Aaaa, aaaa, ModelMap mo..