Raegon Kim
Raegon Kim
`~/Library/LaunchAgents/com.local.KeyRemapping.plist` 에 다음 내용 저장 ``` Label com.local.KeyRemapping ProgramArguments /usr/bin/hidutil property --set {"UserKeyMapping":[ { "HIDKeyboardModifierMappingSrc": 0x700000039, "HIDKeyboardModifierMappingDst": 0x7000000E0 }, { "HIDKeyboardModifierMappingSrc": 0x7000000E7, "HIDKeyboardModifierMappingDst": 0x70000006D } ]} RunAtLoad ``` 키보드 설정에서...
https://www.youtube.com/watch?v=996OiexHze0 https://curity.io/resources/architect/oauth/spa-best-practices/#storing-tokens-for-spas
- https://lejewk.github.io/kubernetes-helm/
https://github.com/spring-projects/spring-framework/issues/25842
https://docs.spring.io/spring-framework/docs/current/reference/html/testing.html#spring-testing-annotation-contextconfiguration ContextConfiguration 은 스프링 테스트에서 기본 제공해주는 기능 https://docs.spring.io/spring-boot/docs/current/reference/html/features.html#features.testing.spring-boot-applications.autoconfigured-tests 이거를 하기 귀찮으니까 스프링 부트는 SpringBootTest 를 제공해서 자동으로 Configuration 을 적용하도록 한다. -> 이때 찾는게 `@SpringBootApplicaton` 어노테이션을 찾아서 하위의 패키지를...
OneToMany 관계에 있는 테이블을 `queryFactory` 를 사용해서 `join` 하면 안되고, 위 `Predicate` 를 `where` 조건으로 사용해야한다.
https://github.com/spring-projects/spring-batch/blob/main/spring-batch-infrastructure/src/test/java/org/springframework/batch/item/database/builder/JpaPagingItemReaderBuilderTests.java
Servlet Context Initialization - https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#web.servlet.embedded-container.context-initializer Context Hierarchy - https://docs.spring.io/spring-framework/docs/current/reference/html/web.html#mvc-servlet-context-hierarchy
https://shanepark.tistory.com/43