일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 프로그래머스
- error
- BFS
- 최단경로
- 2981
- brute force
- spring security
- applicationeventpublisher
- Greedy
- beandefinitionstoreexception
- 코딩테스트
- 알고리즘
- 백준
- HTTP
- Dijkstra
- counting elements
- API
- 문자열
- 2018 KAKAO BLIND RECRUITMENT
- codility
- java
- Spring
- javascript
- 소수
- Python
- springboot
- algorithm
- 라이브템플릿
- 탐욕법
- 파이썬
Archives
- Today
- Total
목록PostgreSQL (1)
Altiora Petamus
@Lob 을 PostgreSQL에서 사용하고 싶을 때
인메모리로 프로젝트를 만들다가 PostgreSQL 을 적용하게 되었다. Error @Lob은 길이가 긴 데이터 값을 입력받기 위해 사용하지만 실제 입력하게되면 too Long object 같은 에러가 뜨게 된다. 해결방법 PostgreSQL에서는 @Lob 대신 @Column을 사용하여 컬럼을 정의해주면 에러가 해결된다. // @Lob @Column(columnDefinition="TEXT") private String description; Reference https://www.postgresql.org/docs/13/largeobjects.html
삽질하는 Error들
2021. 4. 22. 14:09