일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- array
- GraphQL
- graphene-django
- tkinter Radio 동적버튼
- Django-allauth
- python
- for loop
- numpy
- allauth
- Django
- SQL
- FastAPI
- flask
- check_password
- Today
- Total
목록분류 전체보기 (197)
객
1.오류 내용 - 'automatic updates download' has encountered a problem. an err occurred while colletcing items to be installed (출처 : http://stackoverflow.com/questions/25824902/spring-tool-suite-3-6-1-wont-update ) Steps I took to fix this : 1.Close STS 2. Delete folder cache on sts-3.6.0.RELEASE\p2\org.eclipse.equinox.p2.repository 3. Run STS 4. Select Window -> Preferences 5. Expand Install/Update a..
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..