일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 형변환
- jQuery
- tomcat
- CSS
- JSP
- spring 오류
- JavaScript
- Excel
- spring form
- Eclipse
- eclipse 설정
- 에러
- 자바 리스트
- 쿼리
- HTML
- db
- 자바스크립트
- 자바
- 엘라스틱서치
- 이클립스 설정
- elasticsearch
- 인텔리제이
- 도커
- 한글 깨짐
- java 오류
- docker
- Java
- 이클립스
- 데이터베이스
- 엑셀
- Today
- Total
목록Java (12)
개발노트
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..
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..
java.lang.ArithmeticException: / by zero [원인] 변수형을 int형으로 선언하여 발생 [해결] int → long 형으로 변경 ▶ing / long 형 비교 int long 부호 있는 정수 부호 있는 정수 4byte ( 32bits ) 8byte ( 64bits )
JDK : 자바개발도구 (자바 개발하기 위한 환경) / JRE : 자바실행환경 (자바를 실행시키기 위한 환경) JDK의 종류 SE(Standard Edition) = 표준개발환경, 일반 어플리케이션 개발 EE(Enterprise Edition) = 웹과 분산시스템을 개발하는 지원하는 어플리케이션 개발 ME(Micro Edion) = 모바일이나 임베디드 어플리케이션 개발 *API : 자바 기능을 모아놓은 라이브러리 출처: http://hunit.tistory.com/35