본문 바로가기
반응형

분류 전체보기141

[Spring][Postman] 404 Not Found 오류 해결 방법 🚨 Postman send 버튼 클릭시 발생한 에러 메시지{ "timestamp": "2024-07-11T16:41:54.821+00:00", "status": 404, "error": "Not Found", "path": "/hi"} ❓에러 발생 이유클라이언트에서 요청한 URL이 서버에 존재하지 않아 나타나는 오류 메시지입니다.해당 오류 메시지는 Spring(Servlet, Tomcat)이 출력하는 에러 메시지입니다.예를 들어 서버(Spring, Java)에서는 '/hello'라는 URL로 응답 받기를 설정하였지만, 클라이언트에서는 '/hi'라는 URL로 요청할 경우에 나타나는 에러입니다.URL을 잘못 입력하거나,Spring에 해당 URL을 처리하는 Controller가 구현되지.. 2024. 7. 12.
[ GitHub ][ Git ] 이전 commit 되돌리기, 취소 하는 방법 git reset을 사용한 commit 되돌리기 방법으로, 팀 프로젝트 진행 시에는 사용을 지양해 주시길 바랍니다.개인 프로젝트나 개인 공부를 할 때 사용하기에 적합한 방법입니다.시간이 없으신 분들은 여기를 클릭해 주세요. 바로 정리 부분으로 이동합니다. :)상황 구현기존은 올바른 코드를 작성 한 후의 hello.md 파일입니다. 일반적인 방법으로 git commit과 push를 합니다. hello.md1. 첫 번째 커밋 올바른 코드... git commit$ git add .$ git commit -m "첫 번째 commit: 올바른 코드"$ git push origin main 1번째 커밋은 정상적으로 완료된 상태입니다. 이 상태에서 잘못 작성한 코드를 작성하고 git commit과 push를 합니다.. 2024. 7. 10.
[JS] Uncaught SyntaxError: Cannot use import statement outside a module 에러 해결 방법 🚨 크롬 console 에러 메시지Uncaught SyntaxError: Cannot use import statement outside a module❓에러 발생 이유브라우저가 해당 script를 ES6 모듈로 인식하지 못해서 발생하는 문제입니다. ✅ 해결 방법브라우저가 해당 script를 ES6 모듈로 인식할 수 있게 -->수정 코드 math.jslet pi = 3.14;export { pi }; index.jsimport { pi } from "./math.js";console.log(pi); 2024. 7. 10.
[Spring] The bean 'delegatingApplicationListener' 에러 해결 방법 🚨 application run 시 발생한 에러 메시지*************************** APPLICATION FAILED TO START *************************** Description: The bean 'delegatingApplicationListener', defined in class path resource [hello/sns/configuration/AuthenticationConfig.class], could not be registered. A bean with that name has already been defined in class path resource [org/springframework/security/config/annotation/w.. 2024. 5. 28.
반응형