stackoverflow.com/questions/39643960/whats-the-difference-between-javax-persistence-id-and-org-springframework-data What's the difference between javax.persistence.Id and org.springframework.data.annotation.Id? I'd be interested whether there is the difference between javax.persistence.Id and org.springframework.data.annotation.Id. If Spring has created that annotation only for support the JPA a..
(Client(browser) Server(Spring)와 연동되어야 하는 상황에서 spring boot를 통해서 GET method를 통해서 object list를 보내고 싶거나, 복잡한 object를 보내고 싶을 수도 있다. 보통은 POST를 통해서 JSON을 보내지만, 상황에 따라 요청은 있을 수 있다. 하지만 GET method를 통해서 해야 된다면 다음과 같은 방법으로 해결할 수 있다. qs library + regular expression 1. Query String library로 원하는 object를 변환https://github.com/ljharb/qs 2. 변환된 object에서 spring이 해석하지 못하는 부분을 변경 axios.get( url, { params: param, pa..
raspberry를 가지고 berryboot로 multi boot이 가능하도록 구성하였는데, booting시 마우스나 키보드 만을 사용해서 os를 선택할 수 있기 때문에, 오직 ssh로만 들어가서 pi를 접근하는 경우 꼭 모니터로 확인해서 변경해야 하는 단점이 있었다. Q: ssh로 접속해서 기본 부팅 os 선택을 변경할 수 없을까? A: 1. fdisk -l | grep dev 2. shell결과에서 mmcblk0p로 시작하는 것 중에 images 폴더가 존재하는 것에 마운트를 시킨다. ex) mount /dev/mmcblk0p2/ /berryboot ( 두번째 인자는 자신이 원하는 폴더를 지정하면 된다) 3. data/runonce 거나 data/default를 확인해보면 현재 지정한 default ..
Windows + Git bash + Visual studio code 환경에서 bash이랑 code 창이랑 나눠져서 탭하면서 보는게 맘에 안들었다 물론 code에 extension으로 git관련된 것도 있지만 bash가 편해진 이상 같이 쓰고 싶었다 뭐튼 code에서도 통합 터미널을 사용해서 ubuntu bash, cmd, powershell을 실행시키니깐 같이 띄워보자 사용자 설정 또는 작업 영역 설정에 들어가 ( "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", 다음과 같은 항목을 추가 하자 처음에 이걸 그냥 git-bash가 있는 경로를 지정하고 실행했더니... 그냥 git-bash가 새 창으로 나오더라 근데..
Module build failed: Error: No parser and no file path given, couldn't infer a parser. at normalize (path\node_modules\prettier\index.js:7051:13) at formatWithCursor (path\node_modules\prettier\index.js:10370:12) at path\node_modules\prettier\index.js:31115:15 평소에 빌드시 아무 문제 없던 vue-loader쪽에서 갑자기 build error가 발생하였다. 단순히 파일을 못찾아서 그런줄 알았는데 log를 자세히 보니깐 prettier에서 문제가 있는걸로 보여진다 원래 devdependency에 없었던 ..