Blog Content

  • [개발 도구] 온라인 스터디시 사용하기 좋은 툴

    Category 개발 도구 on 2020. 4. 12. 23:16

    네이버 두레이 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 ..

    Read more
  • [Spring] 클래스 패스 알기

    Category 프레임워크 on 2017. 7. 8. 11:45

    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아래 위치하고 있..

    Read more
  • mysql에서 datetime 타입의 데이터에서 나타나는 오류

    Category 슬램덩크/soing2의 슬램덩크(쇼핑몰) on 2017. 5. 28. 18:46

    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..

    Read more