일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- VirtualBox
- svn 변경된 파일 추출
- Cannot prepare internal mirrorlist: No URLs in mirrorlist
- ant
- docker oracle12c
- svn log
- WH question
- svn update
- 프로젝트 네임변경 후 이클립스 로딩시 에러
- 포스트그레스 설치
- svn 특정 리비전 사이 추출
- mysql dml
- taskkill
- Store password unencrypted
- xrdp
- NEXUS
- docker 폐쇄망
- grep
- javax.servlet.GenericFilter
- expected at least 1 bean which qualifies as autowire candidate
- apt-get update 오류
- svn load
- svn commit
- Failed to download metadata for repo 'appstream'
- svn dump
- Oracle install
- postgres install
- Remmina
- svn
- svn 사용법
Archives
- Today
- Total
목록@ManyToMany or @CollectionOfElements (1)
기억의 습작
Illegal attempt to map a non collection as a @OneToMany, @ManyToMany or @CollectionOfElements
오류메시지 Illegal attempt to map a non collection as a @OneToMany, @ManyToMany or @CollectionOfElements 해결방법 아마도 당신은 as-is 처럼 되어 있을 것입니다. to-be 처럼 List 나 Set 과 같이 리스트 형태로 받아야 합니다. as-is: @OneToMany(mappedBy = "lifeRecord", cascade = CascadeType.ALL, orphanRemoval = true) private Weight weights; to-be: @OneToMany(mappedBy = "lifeRecord", cascade = CascadeType.ALL, orphanRemoval = true) private List w..
Software/JPA
2021. 9. 16. 21:17