일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- svn commit
- Remmina
- Store password unencrypted
- Cannot prepare internal mirrorlist: No URLs in mirrorlist
- xrdp
- WH question
- 포스트그레스 설치
- docker oracle12c
- svn load
- svn update
- docker 폐쇄망
- Failed to download metadata for repo 'appstream'
- svn log
- svn 사용법
- grep
- taskkill
- svn 특정 리비전 사이 추출
- svn
- 프로젝트 네임변경 후 이클립스 로딩시 에러
- svn dump
- svn 변경된 파일 추출
- NEXUS
- expected at least 1 bean which qualifies as autowire candidate
- mysql dml
- VirtualBox
- postgres install
- ant
- javax.servlet.GenericFilter
- apt-get update 오류
- Oracle install
- Today
- Total
목록전체 글 (189)
기억의 습작
안되는 이유 1. 외부 JS 파일은 지원하지 않는다.
오류메시지 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..
설치파일 다운로드 윈도우 설치 파일 다운로드 리눅스 설치파일 다운로드 SSL 설치를 위한 인증파일 생성 D:\cert> openssl genrsa -aes256 -out rootca_private.key 2048 D:\cert> openssl rsa -in rootca_private.key -out rootca_public_key.pem -pubout D:\cert> openssl req -new -key rootca_private.key -out rootca.csr -config D:\util\openssl-0.9.8k_X64\openssl.cnf D:\cert> openssl x509 -req -days 3650 -extensions v3_ca -set_serial 1 -in rootca.csr -s..