til
til copied to clipboard
Today I Learned
데이터베이스를 이쪽에서 저쪽으로 복사했더니 발생하는 이슈. 뷰를 생성한 DEFINER 가 데이터베이스에 존재하지 않아서 발생한다. 뷰의 DEFINER 를 수정하는 방법이 있다. https://stackoverflow.com/questions/10169960/mysql-error-1449-the-user-specified-as-a-definer-does-not-exist 나는 그냥 뷰의 Create 쿼리를 확인한 다음, 삭제하고 다시...
https://shanepark.tistory.com/41
https://stackoverflow.com/questions/4334970/hibernate-throws-multiplebagfetchexception-cannot-simultaneously-fetch-multipl/51055523?stw=2#51055523
https://intellij-support.jetbrains.com/hc/en-us/community/posts/4405697153554/comments/4405866859154
개발자 명령 도구를 다시 설치한다 ``` xcode-select --install ```
https://apple.stackexchange.com/questions/48502/how-can-i-permanently-add-my-ssh-private-key-to-keychain-so-it-is-automatically ``` ssh-add -K ~/.ssh/[your-private-key] ``` ``` ssh-add -K ~/.ssh/key.pem @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: UNPROTECTED PRIVATE KEY FILE! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Permissions 0644 for '/Users/raegon/.ssh/LightsailDefaultKey-ap-northeast-2.pem' are too open. It is required that...
# Naming Strategies 객체를 데이터베이스에 매핑할 때 하이버네이트는 2 단계의 프로세스를 거친다. - 첫째로, 도메인 모델 매핑으로부터 적절한 논리적 이름을 결정한다. 논리적 이름은 사용자가 `@Column` 이나 `@Table`을 사용해서 명시적으로 선언하거나,...
https://thorben-janssen.com/lombok-hibernate-how-to-avoid-common-pitfalls/#Avoid_Data https://jojoldu.tistory.com/536 Dirty checking
## VIM 의 방식 ### Tip 1 `.` : 이전에 수행한 작업을 반복한다. ### Tip 2 둘 이상의 명령을 압축해서 단일 키 명령으로 사용할 수 있다. ``` C c$ s...
https://www.baeldung.com/transaction-configuration-with-jpa-and-spring ```yml logging: level: org: springframework: transctaion: trace ```