Error

    Typescript - This is not the tsc command you are looking for

    .ts 파일을 컴파일하기 위해 tsc 명령어를 실행했는데 아래 문제가 발생했다. This is not the tsc command you are looking forTo get access to the TypeScript compiler, tsc, from the command line either:- Use npm install typescript to first add TypeScript to your project before using npx- Use yarn to avoid accidentally running code from un-installed packages 해당 문제는 stakoverflow에서 원인과 해결책을 찾을 수 있었다.https://stackov..

    Sublime Text - Package Control이 검색되지 않는 문제(MAC)

    Sublime Text의 Pretty JSON을 사용하고 싶어서 Package Control을 다운로드하려는데, 여타 블로그 설명과 달리 검색해도 내용이 나오지 않는 문제가 있었다. Reddit에 동일한 문제에 대한 글이 있었다.https://www.reddit.com/r/SublimeText/comments/qsldsk/package_control_not_working_not_ignored_on_mac/?rdt=54048  From the SublimeText community on RedditExplore this post and more from the SublimeText communitywww.reddit.com  해당 글의 댓글을 통해 문제를 해결할 수 있었다.https://github.com..

    MySQL - column ' ' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by

    GROUP BY가 포함된 SQL문을 실행하려는 과정에서 오류가 발생했다.column ' ' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by 해결 방법아래의 stackoverflow 내용을 통해 문제를 해결할 수 있었다.https://stackoverflow.com/questions/41887460/select-list-is-not-in-group-by-clause-and-contains-nonaggregated-column-inc SELECT list is not in GROUP BY clause and contains nonaggrega..

    Spring - 406 Not Acceptable 발생

    "status": 406,  "error": "Not Acceptable"Springboot responseDto를 responseEntity Body에 담아서 내보내려고 하는데 406 Error가 발생했다.다른 Dto는 정상 동작되는데 어째서 해당 API만 되지 않는 것인지 몰라 내용을 찾아보았다. 해결 방법Dto에 Getter Annotation이 있어야 한다고 한다.붙여주니 정상 동작했다.

    Spring - Swagger Response 정보가 보이지 않는 문제

    코드 상에서 오류가 발생한 것은 아니지만 내용을 정리하고자 한다. SpringBoot를 활용해 기능을 구현하던 중 API가 제대로 동작하는지 확인하기 위해 Swagger를 활용하였는데 어떤 API 내용은 정상적으로 보이는데 일부 API 내용이 보이지 않았다. 아래는 문제 코드와 사진이다. @Operation(summary = "사용자 조회", description = "특정 사용자 정보를 조회합니다.") @GetMapping("/profile") public ResponseEntity getMemberProfile(Authentication authentication) { return ResponseEntity.status(HttpStatus.OK).body(memberSer..

    Spring - 'Failed to convert from type [java.lang.String] to type [java.util.Date] for value [ ]'

    회원가입을 할 때 생일을 입력받으려고 하는데 다음 오류가 발생했다.Failed to convert from type [java.lang.String] to type [java.util.Date] for value [2024-05-01] 데이터 타입이 달라서 문제라는 점은 바로 알겠는데 어떻게 해결해야 하는지를 몰라서 찾아보았다. 해결 방법https://stackoverflow.com/questions/23702041/failed-to-convert-property-value-of-type-java-lang-string-to-required-type-java Failed to convert property value of type java.lang.String to required type java.uti..

    Chrome Vue.js devtools - Vue.js not detected

    Vue.js devtools를 사용하려고 하는데 자꾸 아래와 같이 "Vue.js not detected" 문구만 나왔다. 해결 방법Vue.js devtools - UI Customized 확장 프로그램을 Chrome에 추가한다.  정상 동작한다.

    Spring Tool Suite 4 - 'Installing Software' has encountered a problem. An internal error occurred during: "Installing Software"

    Spring Tool Suite > Help > Eclipse Marketplace를 사용하려고 하는데 위의 오류가 자꾸만 발생했다.An internal error occurred during: "Installing Software". The profile is currently in use. STS를 여러 번 종료했다가 다시 시작해도 같은 오류가 발생했다. 해결 방법이를 해결하는 데에 시간을 오래 쓰다가 우연히 작업 관리자를 확인해 보니 STS가 하나 더 동작하고 있었다. 실행할 만한 것이 없는데 왜 뒷단에서 돌고 있는 중이었는지는 아직도 모르겠다.