Memo
Done
l create/delete Post 추가
l updatePost
- PostId-TistoryPostId table 필요
Todo
l postId-TistoryPostId table
- Category와 같이 mapper에 작성
l mapping table을 Vector로 변경
- 동기화 문제로 vector로 변경 필요
New
List vs ArrayList
l List는 인터페이스, ArrayList는 List를 구현
l List<Obj> list = new ArrayList<>(); 로 사용을 권장
- List의 하위클래스(LinkedList 등)으로 사용 가능
Vector vs ArrayList
l Vector는 동기화되어 쓰레드 하나씩만 접근 가능
- ArrayList는 동기화되지 않아 여러 쓰레드가 동시에 접근가능
Things to know
Optimistic locking?
'정리하기 > DR' 카테고리의 다른 글
[Daily Report] 22.01.21 - Column 'cat_id' cannot be null 이슈 해결 (0) | 2022.01.21 |
---|---|
[Daily Report] 22.01.20 - updatePost 작성 및 오류 원인 확인중 (0) | 2022.01.20 |
[Daily Report] 22.01.18 - updateCat 구현 및 Post부분 구현중 (0) | 2022.01.18 |
[Daily Report] 22.01.14 - Category 동기화를 위한 메서드 구현 (진행중) (0) | 2022.01.14 |
[Daily Report] 22.01.13 - TistoryCategory 비교 메서드 구현 (0) | 2022.01.13 |