2023-02-15-TIL
2023-02-15-TIL Today I Learned Go Clean Architecture 무엇이 Go스러운걸까? Go스럽다는 말이 과연 절대적인 가치일까? 이 말은 세부적인 코드의 부분부분에서는 맞는 말이기도 하다. 하지만 전체적인 애플리케이션 아키텍처에 있어서는 언어가 아키텍처를 주도하기는 어렵다. 언어의 고유한 특징이 어느 정도 반영되겠...
2023-02-15-TIL Today I Learned Go Clean Architecture 무엇이 Go스러운걸까? Go스럽다는 말이 과연 절대적인 가치일까? 이 말은 세부적인 코드의 부분부분에서는 맞는 말이기도 하다. 하지만 전체적인 애플리케이션 아키텍처에 있어서는 언어가 아키텍처를 주도하기는 어렵다. 언어의 고유한 특징이 어느 정도 반영되겠...
2023-02-14-TIL Today I Learned Custom Exception vs Runtime Exception https://tecoble.techcourse.co.kr/post/2020-08-17-custom-exception/ Checked Exception vs Unchecked Exception https://...
2023-02-13-TIL Today I Learned JPA ID Long vs Integer https://docs.oracle.com/cd/E19253-01/817-6223/chp-typeopexpr-2/index.html https://stackoverflow.com/questions/17398192/long-versus-inte...
2023-02-12-TIL Today I Learned Error Code with Enum https://stackoverflow.com/questions/72745698/throwing-custom-exception-inside-enum-but-flow-is-not-coming-to-exceptionhandle https://velo...
2023-02-11-TIL Today I Learned @SpringBootTest vs @DataJpaTest https://cobbybb.tistory.com/23 https://da-nyee.github.io/posts/spring-springboottest-vs-datajpatest/ https://velog.io/@jwkim...
2023-02-09-TIL Today I Learned Package by Layer vs Package by Feature https://www.youtube.com/watch?v=5OjqD-ow8GE Multi Module Monolithic https://pulgupta.com/2019/02/14/multi-module-mo...
2023-02-08-TIL Today I Learned Checked Exception vs Unchecked Exception https://rollbar.com/blog/how-to-handle-checked-unchecked-exceptions-in-java/ https://stackify.com/specify-handle-exce...
2023-02-07-TIL Today I Learned Java Web Crawling: Jsoup vs Selenium https://hanke-r.tistory.com/161 https://lotuus.tistory.com/107 https://shinsunyoung.tistory.com/63 https://vmpo.tisto...
2023-02-06-TIL Today I Learned Showing Different Response Depending on the Role and Privilege 스프링 시큐리티를 사용한다면 설정을 통해서 응답할 필드를 지정할 수 있다. 또한, 권한 별로 컨트롤러에 접근 가능여부를 설정할 수도 있다. 필드에 일일이 @JsonView 같은 애...
2023-02-04-TIL Today I Learned Go 1.20 Release Notes https://go.dev/doc/go1.20 Hibernate Reactive 기본적으로 JPA는 동기방식으로 동작한다. 따라서 스프링 환경에서 멀티스레딩의 비동기 방식으로 ORM을 사용하고 싶다면 Hibernate Reactive같은 OR...