일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GraphQL
- SQL
- tkinter Radio 동적버튼
- graphene-django
- for loop
- array
- allauth
- numpy
- Django-allauth
- python
- Django
- FastAPI
- check_password
- flask
- Today
- Total
목록전체 글 (197)
객
일반 SQL문에 WHERE절에 대한 DJANGO ORM 표현방법 ─────────────────────────────────────────── 조회 조건 설명 ─────────────┬───────────────────────────── __contains │ 지정한 문자열을 포함하는 데이터 조회 │ Post.objects.filter(title__contains=’test’) ─────────────┼───────────────────────────── __icontains │ 지정한 문자열의 대소문자 구분없이 포함하는 데이터 조회 │ Post.objects.filter(title__icontains=’this’) ─────────────┼───────────────────────────── __lt ..
Configure the DEFAULT_AUTO_FIELD setting or the BlogConfig.default_auto_field attribute to point to a subclass of AutoField, e.g. 'django.db.models.BigAutoField'. => models.py에 id 명시적으로 기록해서 수정하였다. (id = models.BigAutoField(primary_key=True) 추가함.) 이러한 오류는 장고 3.1 버전에서 3.2 버전으로 업데이트하면서 생긴 메시지 인듯함. -----------------------------------------------------------------------------------------------------..
환경: java 1.8 , postgresql 9.x , thymeleaf , angularjs , windows 10 IndexController.java package org.example.Controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; @Controller public class IndexController { @RequestMapping(value="/" , method=Re..
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..