Framework/Spring 2

TypeError: Failed to execute 'fetch' on 'Window' : Request with GET/HEAD method cannot have body.

Swagger에서 GET 메소드로 API를 실행시키니 이런 에러가 떴다.TypeError: Failed to execute 'fetch' on 'Window' : Request with GET/HEAD method cannot have body. 포스트맨에서 호출하면 잘 된다.이상한 점이 GET은 원래 body가 없다고 했는데 그럼 포스트맨이 이상한가?GET에 body를 담아보낼 수도 있고, 안 될수도 있다고 함POST로 바꿈 참고 👇👇👇https://funveloper.tistory.com/157 GET 메소드 요청시 body 를 보낼 수 있을까?안녕하세요. 루루개발자 입니다. 이번에는 GET 메소드로 요청을 보낼 때, body 를 같이 보내는 것이 가능한지 알아보고자 합니다. GET 메소드에 대..

Framework/Spring 2024.04.26

[Error] Caused by: javax.naming.NameNotFoundException: Name [jdbc/ssafy]은(는) 이 컨텍스트에 바인딩되지 않았습니다. [jdbc]을(를) 찾을 수 없습니다.

🟣 에러로그 org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in ServletContext resource [/WEB-INF/spring/root-context.xml]: Invocation of init method failed; nested exception is javax.naming.NameNotFoundException: Name [jdbc/ssafy]은(는) 이 컨텍스트에 바인딩되지 않았습니다. [jdbc]을(를) 찾을 수 없습니다. 🟡 상황 root-context.xml에 빈을 설정했는데 jdbc/ssafy 이름으로 설정된 값을 못 찾으니까 에러가..

Framework/Spring 2023.10.29