네이버 두레이 https://dooray.com/home/ All about collaboration tools, Dooray! Issue tracker, Messenger, Wiki, Mail, Calendar, Drive, Contacts and more. Experience the beginning and end of collaboration tools. dooray.com 영상 통화 가능 화면 공유 가능 채팅 가능 vsCode 확장 프로그램 설치 ( Live share extension pack ) 실시간 코딩 가능 코드의 실행 가능 ( 현재까진 Host에서만 가능한 것으로 확인되나 추가 확인이 필요 ) 음성 통화 가능 채팅 가능 코드쉐어 https://codeshare.io/ Codeshare ..
classpath 빌드 전과 빌드 후가 다르다. 빌드 결과도 gradle과 maven도 다르다. 우리가 확인해야 할 것은 jar 파일. 실제 실행되는게 jar파일이기 떄문 hello-shop-0.0.1.SNAPSHOT.jar 를 확인해보자 jar를 압축 해제하면 나타나는 파일계층이 실제 classpath라고 보면 된다. META-INF 먼저, META-INF는 jar에 대한 메타 데이터. 그 안에 MANIFEST.MF는 중요한 파일이다. start class, library 위치 등의 정보가 있다. 여기서 classpath를 알 수 있다. BOOT-INF/classes 여기가 classpath이다! 여기를 기준으로 경로를 잡으면 된다. 그렇다면 원래 resources의 위치는 static아래 위치하고 있..
g5_shop_order 테이블에서 od_invoice_time이라는 필드가 있다.필드 정보는 다음과 같다. Field : od_invoice_timeType : datetimeDefault : 0000-00-00 00:00:00 그러나 이 필드를 불러와 Java Class에 매핑하며 문제가 발생했다.오류 내용은 다음과 같다. There was an unexpected error (type=Internal Server Error, status=500).Error attempting to get column 'od_invoice_time' from result set. Cause: java.sql.SQLException: Value '0000-00-00 00:00:00' can not be represen..