2022-03-08-TIL
2022-03-08-TIL Today I Learned @OneToOne with @PrimaryKeyJoinColumn vs @MapsId https://www.baeldung.com/jpa-one-to-one https://lists.jboss.org/pipermail/hibernate-dev/2018-September/018008....
2022-03-08-TIL Today I Learned @OneToOne with @PrimaryKeyJoinColumn vs @MapsId https://www.baeldung.com/jpa-one-to-one https://lists.jboss.org/pipermail/hibernate-dev/2018-September/018008....
2022-03-07-TIL Today I Learned Convert Entity to DTO https://www.amitph.com/spring-entity-to-dto/ Lombok and JPA https://dzone.com/articles/lombok-and-jpa-what-may-go-wrong QueryDSL w...
2022-03-06-TIL Today I Learned JPA vs MyBatis Package Structure Domain https://hackernoon.com/package-by-features-not-layers-2d076df1964d https://stackoverflow.com/questions/55245747/shoul...
2022-03-03-TIL Today I Learned DTO의 사용범위 정해진 규칙은 없지만 DTO는 컨트롤러에서 request, response의 용도로 사용하며, 서비스 계층으로 내려가는 dto의 경우 SomethingDto 정도로 네이밍 하면 좋을 것 같다. 즉, 컨트롤러에서만 사용하는 DTO와 서비스에서도 사용되는 DTO를 구분하는게 좋...
2022-03-02-TIL Today I Learned Spring Boot Admin https://github.com/codecentric/spring-boot-admin https://coe.gitbook.io/guide/monitoring/spring-boot-admin HTTPS https://opentutorials...
2022-03-01-TIL Today I Learned Spring Cloud Feign https://cloud.spring.io/spring-cloud-netflix/multi/multi_spring-cloud-feign.html https://sabarada.tistory.com/118 Object vs ? (Wildcard) ...
2022-02-27-TIL Today I Learned MapStruct https://mapstruct.org/documentation/ide-support/ https://dev-splin.github.io/spring/Spring-ModelMapper,MapStruct/ https://mapstruct.org/documentat...
2022-02-26-TIL Today I Learned 리액티브 프로그래밍 리액티브 프로세싱 먼저 리액티브 프로세싱이란, 개발자로 하여금 논블로킹, 비동기 애플리케이션을 빌드할 수 있게끔 하여, 해당 애플리케이션이 back-pressure를 다룰 수 있게 하는 것이다. (플로우 컨트롤) Back-pressure Back-pressure는 또...
2022-02-24-TIL Today I Learned 특정 문자열로 시작하는 파일 지우기 https://www.cyberciti.biz/faq/unix-linux-remove-strange-names-files/ https://superuser.com/questions/482435/how-to-remove-all-files-starti...
2022-02-23-TIL Today I Learned JWT JSON 객체를 사용해서 토큰 자체를 저장하는 웹 토큰의 일종. 아주 간편하고 쉽게 적용할 수 있어서 몇 가지 고려사항만 잘 적용하면 작은 프로젝트에서 부터 대규모 프로젝트까지 잘 적용할 수 있다. Header, Payload, Signature 세 개의 부분으로 구성되어있다. He...