2021-05-18-TIL
2021-05-18-TIL RESTful search or filtering GET /rooms?checkIn="2021-05-10"&checkOut="2021-05-20"&min=10000&max=100000&guests=3 와 같이 url의 파라미터로 값을 포함시키는 것이 바람직한가? 또는 GET /rooms에서 r...
2021-05-18-TIL RESTful search or filtering GET /rooms?checkIn="2021-05-10"&checkOut="2021-05-20"&min=10000&max=100000&guests=3 와 같이 url의 파라미터로 값을 포함시키는 것이 바람직한가? 또는 GET /rooms에서 r...
2021-05-17-TIL Spring Boot + Spring JDBC Template https://pyxispub.uzuki.live/?p=1715 https://mkyong.com/spring-boot/spring-boot-jdbc-examples/ https://www.baeldung.com/spring-jdbc-jdbctem...
2021-05-16-TIL Enum 사용 https://jojoldu.tistory.com/137 https://limkydev.tistory.com/66 LocalDateTime https://jeong-pro.tistory.com/163 https://java119.tistory.com/52 https://mkyong...
2021-05-15-TIL 예외처리 관련 SimpleDateFormat::parse에서 발생할 수 있는 예외인 ParseException에 대해서 처리하는데 고민되는 부분이 있었다. 계속 throws 하는것이 바람직한 해결방법인가? 중간에 stream이 있는데, stream으로 처리하는 코드상에서 예외 처리는 어떻게 하는가? 그냥 l...
2021-05-14-TIL Request and Response DTO naming convention https://forums.servicestack.net/t/request-and-response-dto-naming-convention/6142 https://woowacourse.github.io/javable/post/2020-08...
2021-05-27-TIL 쿼리별 메서드 오버로딩? vs 동적 쿼리 생성 public List<Room> findByFilter(String location) { return jdbcTemplate.query("SELECT * FROM room WHERE location = ?", roomRowMapper(), locati...
2021-05-12-TIL Git에서 파일이름 대소문자 변경 반영하기 https://musma.github.io/2019/03/04/git-force-file-rename.html TODO isPlaying 랜덤으로 생성 playing의 값들을 null로 생성 average 계산 game, team에 대한 더미 데이터 추가...
2021-05-11-TIL 크로스 도메인(CORS) 이슈 원인 웹페이지의 origin과 API의 origin이 달라서 발생 해결책 CORS 정책을 지키도록 요청 헤더 변경 API에서 허용하도록 설정 변경 -> @CrossOrigin을 컨트롤러에 붙여주기 참고자료 http://jmlim.github.io/spring/2018...
2021-04-29-TIL DDD https://www.slideshare.net/baejjae93/ss-27536729 Ngnix https://velog.io/@wijihoon123/Nginx%EB%9E%80-%EB%AC%B4%EC%97%87%EC%9D%B8%EA%B0%80 A B C D E A B 95 C ...
2021-04-27-TIL HashMap to List using Stream https://stackoverflow.com/questions/29625529/hashmap-with-streams-in-java-8-streams-to-collect-value-of-map 커스텀 예외 https://devbox.tistory.com/...