본문 바로가기

내가 당면한 문제와 해결방안

(81)
RestController랑 그냥 Controller 차이 뭐야 나도 몰라 찾아봅시다 https://doublesprogramming.tistory.com/105
pageable 난 몰라요 https://docs.spring.io/spring-data/jpa/docs/current/reference/html/
index 참고 https://chartworld.tistory.com/18 http://contents.kocw.net/KOCW/document/2015/chungnam/leekyuchul/8.pdf https://blog.couchbase.com/create-right-index-get-right-performance/ https://dbdb.io/ Database of Databases The on-line encyclopedia of databases systems from Carnegie Mellon University. dbdb.io
mioji 자유여행 추천 해주는 서비스 이름인데 데이터를 가지고 있음.
docker volume 잡아줄때 docker run -d --name tour-geo-api -p 8080:8080 -v /root/geolocation/config/api.application.properties:/app/config/application.properties lab-dev-docker.inpark.kr/tour-geo-api:20190716-4 -v flag 사용하여 볼륨을 잡아주는데 계속 docker run이 안됐음. -> 이유 host pc의 /root 부터 경로를 잡아주지 않아서.
how to list all images and tags from docker private repository 프라이빗 리포지토리에 내가 원하는 "이미지"가 "태그"가 뭐뭐있는지 궁금할때 있지않나 ! curl -X GET https://프라이빗_리포지토리_도메인/v2/_catalog # ex : curl -X GET https://lab-dev-docker.inpark.kr/v2/_catalog # 이렇게하면 리포지토리의 도커 이미지가 반환됨. curl https://프라이빗_리포지토리_도메인/v2/이미지명/tags/list # ex : curl https://lab-dev-docker.inpark.kr/v2/tour-geo-admin/tags/list # 이미지 별로 태그까지 조회할 수 있음. 참고 (https://forums.docker.com/t/docker-private-registry-how-to-lis..
this this 연습 ㅇㅇ 느낀점 1 결국 ~ 사용법 익히는 거니깐 직접 쳐보는것이 중요. 2 예제는 재밋게 하면 덜 지루 3 너무 싫어서 죽을것같아도 결국 영어를 해야됨. 4 jsbin 이 콘솔보다 낫군용 5 혼자 단순히 짜다보니 버전을 낮게 편하게도 많이 썼고, 유지보수하기 더럽게 짜왔음. 그치만 되도록 변수명을 명시적으로 한다던지.. 하는 습관을 들이기. 6 적어놓을때는 이거 왜적어 ㅋㅋ 싶어도 쨋든 적은게 나음 const human = { age: 200, func: function() { console.log(this); } }; human.func(); // human 출력 const func = human.func; func(); //window 객체 출력 함수가 실행될 당시의 this가 무엇일지 ..
javascript this // // const human = { // // age: 200, // // func: function() { // // console.log(this); // // } // // }; // // human.func(); // // const func = human.func; // // func(); //window 객체 출력 // const testFunc = function(){ // console.log(this); // }; // const human = { // age: 200, // func: testFunc // }; // // testFunc(); //window객체 출력 // // human.func(); //human // // testFunc.call(); //windows // /..