본문 바로가기

til30

47. [TIL] 오늘의 배움일지 ( 20-11-16 ) 1. 리포지토리에서 나는 string, long 같은 내장 타입으로만 findBy??을 진행했었는데, 이제보니 객체로도 진행할 수 있었다. findByUser라던지, findByBoard와 같은 객체로도 찾을 수 있었다. 2020. 11. 16.
46. [TIL] 오늘의 배움일지 ( 20-11-12 ) 1. intellij 라이브 템플릿 작성법에 대해 배웠다. do-study.tistory.com/103 IntelliJ Custom Live Template 사용 이번 포스트에서는 IntelliJ에서 유용하게 사용할 수 있는 커스텀 Live Template을 추가하는 방법을 소개합니다. Live Template 기능 소개 Live Template 은 간단한 약어로 예약된 코드를 Generate 해주는 유용한 do-study.tistory.com 2020. 11. 12.
45. [TIL] 오늘의 배움일지 ( 20-11-11 ) 1. application.yml 작성방법에 대해 배웠습니다. spring: main: allow-bean-definition-overriding: true # 이 설정은 동일한 이름을 가진 스프링 빈이 등록되려고 하면 BeanDefinitionOverrideException을 발생 datasource: url: jdbc:h2:tcp://localhost/~/querydsl username: sa password: driver-class-name: org.h2.Driver devtools: livereload: enabled: true # 이 옵션은 정적 파일 변동 시 자동 반영될 수 있도록 돕는다. restart: enabled: true jpa: hibernate: ddl-auto: create # .. 2020. 11. 11.
44. [TIL] 오늘의 배움일지 ( 20-11-10 ) 1. 오라클 날짜 검색 쿼리문 SELECT * FROM SIS_ITEM WHERE TO_CHAR(REGDATE, 'YYYYMMDD') > '20190701'; - 참고 자료 : deftkang.tistory.com/86 2020. 11. 10.