일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- FastAPI
- flask
- graphene-django
- GraphQL
- tkinter Radio 동적버튼
- check_password
- array
- allauth
- SQL
- Django-allauth
- for loop
- python
- Django
- numpy
- Today
- Total
목록분류 전체보기 (196)
객
JAVA(SWING) + HIBERNATE 사용중 발생하는 오류를 정리 1. Exception in thread "AWT-EventQueue-0" java.lang.IndexOutOfBoundsException: Index: 1, Size: 0 => list에서 item을 get 하려는데 리스트의 길이가 0이네요. 0번을 빼올려는데 0번째 아이템이 없으므로 인덱스에러 뿜뿜. 2. Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException => 쿼리를 실행하고 나서 결과를 RETUEN 할 때 해당하는 데이터가 없을때 발생. 3. parenttables is not mapped => BEAN 클래스명을 적어야함 4. Exception in t..
출 처 : http://hmkcode.com/java-mybatis-mysql/ 환경 : STS + JAVA 1.8 + MyBatis3.2.8 + CUBRID ( 위 출처의 환경이 아닌 작성자 환경 입니다. ) [ config.xml ] <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"> <configuration> <typeAliases&g..
출처 : http://flexmania.tistory.com/43 에서 퍼온 자료 입니다. 링크를 걸까 하다가 위 님의 블러그가 없어진다면 더이상 참고 할수 없을 것같아서 퍼왔습니다. //======================================================================================== 처음 JSP 나 서블릿을 하다보면.... 한글이 깨져서 나와 당황하게 ..
Reader reader = null; try { reader = rs.getCharacterStream("CONTENT"); char[] buff = new char[512]; int len = -1; StringBuffer buffer = new StringBuffer(512); while ((len = reader.read(buff)) != -1) { buffer.append(buff, 0, len); } book.setContent(new String(buffer.toString().getBytes("8859_1"), "UTF-8")); } catch (IOException iex) { throw new GuestBookException("getList", iex..