일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Java
- tomcat
- docker
- JavaScript
- 한글 깨짐
- 형변환
- 쿼리
- 자바
- 이클립스
- 엘라스틱서치
- elasticsearch
- db
- 자바 리스트
- 인텔리제이
- spring form
- eclipse 설정
- 이클립스 설정
- jQuery
- JSP
- java 오류
- HTML
- 데이터베이스
- Excel
- 엑셀
- 에러
- 자바스크립트
- 도커
- spring 오류
- CSS
- Eclipse
- Today
- Total
목록Error (33)
개발노트
Field error in object 'Vo' on field '변수명': rejected value []; codes [typeMismatch.Vo.suvMngNum,typeMismatch.suvMngNum,typeMismatch.long,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [Vo.suvMngNum,suvMngNum]; arguments []; default message [suvMngNum]]; default message [Failed to convert property value of type 'java.lang.String' to required typ..
eclipse 실행시, HTTP Status 400 에레 발생 [원인] 프로젝트를 실행해야 하는데 파일을 실행해서 발생하는 오류 ex) 프로젝트를 실행하면 url경로명이 http://localhost:8080/myapp/ 로 실행되는데 home.jsp까지 들어가서 실행을 시키면 http://localhost:8080/myapp/WEB-INF/views/home.jsp 의 경로가 실행되기 때문에 오류가 나는것이다. [해결] Sever > Modules > Path 으로 이동 설정된 경로를 확인 출처: http://godtory.tistory.com/m/54 Spring] 초보자들이 겪을 수 있는 에러 전에 학교에서 스프링 수업을 듣는데 여러가지 에러를 겪어서 제대로 못했었다. 그리고 집에서도 스프링 STS..
eclipse 실행후, 에러창이 뜨면서 publishing to ~ 라는 에러가 발생. Detail을 보면 Multiple Contexts hava path of "/패키지명" [원인] 패키지명의 충돌 ex) aaa.tt.package 와 bbb.fff.package 가 있는데 전체 패키지의 이름은 다르지만, 마지막 패키지명인 package가 같아 발생하는 오류 [해결] 패키지명이 겹치지 않게 수정 출처: http://godtory.tistory.com/m/54
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'Service' defined in class path resource [context.xml]: Initialization of bean failed; nested exception is org.springframework.beans. TypeMismatchException: Failed to convert property value of type [$Proxy54 implementing [해결] 1. pom.xml 파일의 repositories 부분을 ctrl + x 한 다음 저장한다. 저장후 프로젝트 빌드 후, 다시 내용을 ..
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'Service' defined in class path resource [context.xml]: Initialization of bean failed; nested exception is org.springframework.beans. TypeMismatchException: Failed to convert property value of type [$Proxy54 implementing [원인] mybatis-context.xml의 위치를 선언하지 않아 발생한 문제 [해결] web.xml의 contextConfigLocatio..
Cause: com.ibatis.common.xml.NodeletException: Error parsing XML. Cause: org.xml.sax.SAXParseException: Attribute "resultMap" must be declared for element type "update". Caused by: ~ Attribute "resultMap" must be declared for element type "update". [원인] XML에서 Map타입을 사용할 경우, parameterClass="VO"로 파라미터 값을 받고 / resultMap="listMap"으로 결과를 뿌리는데 상단에 아래 문장을 선언해주어야 되는데 선언하지 않아 발생함. ▶DB(쿼리문) 값 처리 종류 VO, Ma..
java.sql.SQLException: IO 예외 상황: The Network Adapter could not establish the connection [원인] DB서버가 연결이 되어 있는 않아서 발생
spring mybatis 에러 Error : java.lang.IllegalArgumentException: Mapped Statements collection does not contain value for? ~ [해결] 1. mapper의 id 확인 mapper파일에서 A라는 id를 가지는 쿼리문의 DAO(호출)에 있어야 되는데 있지않거나 이름이 다르면 에러 발생 2. parameter와 bean의 필드명이 다른지 확인 3. mapper의 namespace가 다른지 확인 쿼리문을 실행시 namespace와 id를 이용해서 호출을 하는데, namespace → mapper 찾고 id를 통해 요청한 쿼리 찾음 4. mapper에 정의된 namespace가 중복되어 있지는 않은지 확인 5. MyBatis..