일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 쿼리
- JSP
- db
- 한글 깨짐
- 엑셀
- 이클립스 설정
- jQuery
- 데이터베이스
- spring 오류
- 엘라스틱서치
- 자바스크립트
- 자바 리스트
- 인텔리제이
- CSS
- 형변환
- Java
- spring form
- 도커
- 자바
- HTML
- java 오류
- 이클립스
- vscode
- docker
- elasticsearch
- Excel
- Eclipse
- tomcat
- eclipse 설정
- JavaScript
- Today
- Total
목록전체 글 (183)
개발노트
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..
org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [egovframework.rte.cmmn.EgovExcepHndlr] for bean with name 'egovHandler' defined in file [C:\eGovFrameDev-3.2.0-64bit\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\ \WEB-INF\classes\egovframework\spring\context-aspect.xml]; nested exception is java.lang.ClassNotFoundException: egovframewo..
java.lang.Error: Unresolved compilation problems: The import egovframework.rte.ptl cannot be resolved AbstractPaginationRenderer cannot be resolved to a type firstPageLabel cannot be resolved to a variable previousPageLabel cannot be resolved to a variable currentPageLabel cannot be resolved to a variable otherPageLabel cannot be resolved to a variable nextPageLabel cannot be resolved to a varia..
eclipse 실행시, workspace in use or cannot be created, choose a different one eclipse를 2개를 실행시키거나 하지 않아도 위와 같은 에러가 발생했다. [해결] 1. eclips 프로세스를 강제로 종료 2. workspace/.metadata 폴더의 .lock 파일 삭제
java.lang.IllegalStateException: Neither BindingResult nor plain target object for bean name '변수명' available as request attribute [원인] spring form태그()과 Controller의 @ModelAttribute로 넘겨지는 파라미터의 이름이 다를 경우 발생함 ex) @ModelAttribute 부분 public String getParameter(@ModelAttribute @Param A, Binding Result result, Model model) Form 부분 [해결] form 안의 name의 이름과 ModelAttribute의 이름을 같게 수정 출처: https://m.blog.nave..
Servlet.service() for servlet jsp threw exception java.lang.IllegalStateException: Neither BindingResult nor plain target object for bean name 'command' available as request attribute [해결]