2021-06-02-TIL
2021-06-02-TIL MyBatis https://mybatis.org/mybatis-3/ko/index.html https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=songintae92&logNo=221216410360 데이터 환경 구축 ht...
2021-06-02-TIL MyBatis https://mybatis.org/mybatis-3/ko/index.html https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=songintae92&logNo=221216410360 데이터 환경 구축 ht...
2021-05-31-TIL 코드스쿼드 회고 안녕하세요? 이번에 제가 백엔드 개발자로 취업을 하게 되어 코드스쿼드에서 더이상 함께할 수 없게 되었습니다. 처음에는 단지 취업을 목표로 시작한 코드스쿼드이지만, 이제는 취업만이 끝이아니라 개발자로서의 학습태도, 마음가짐이 더 중요하다는 것을 알게되었습니다. 스터디원 분들과 하고싶은 이야기도 많고 아쉬운 ...
2021-05-28-TIL @RequestParam to be nullable @GetMapping public searchDto search(@RequestParam(name = "check-in", required = false) String checkIn) { ... } 기본적으로 파라미터는 required = tru...
2021-05-26-TIL Subquery vs Join https://jojoldu.tistory.com/520 MySQL Storage Engine https://dev-ahn.tistory.com/72 Row Store vs Column Store https://www.percona.com/blog/2016/12/1...
2021-05-25-TIL location, checkIn, checkOut 필터 검색 location은 ‘서울’이면서 checkIn 날짜가 ‘2021-08-01’과 ‘2021-08-30’사이에 예약된 정보가 없는 방을 조회 SELECT * FROM room WHERE location = '서울' AND id NOT ...
2021-05-24-TIL Insert query using Spring JDBC Template https://www.baeldung.com/spring-jdbc-jdbctemplate Class.forName() https://jongminlee0.github.io/2019/06/29/reflection/ Spring JDBC Templa...
2021-05-23-TIL Q. 테스트 코드로 insert한 결과는 db에 반영이 안되는가? CORS 문제 리액트로 실행되는 프론트 서버는 localhost:3000 주소를 사용하는데, JSON 데이터를 받아오는 서버가 AWS의 주소이므로 서로 오리진이 달라서 발생하는 문제이다. 이는 iOS에서는 발생하지 않으며, 프론트는 자체 서버가 구동되므로...
2021-05-19-TIL RESTful API naming https://www.ecma-international.org/publications-and-standards/standards/ecma-404/ https://devuna.tistory.com/79 https://sanghaklee.tistory.com/57 How to...
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...