error2 [Spring] UnsatisfiedDependencyException: Error creating bean with name '...' defined in URL 에러 해결법 개요Spring에서 Error creating bean with name '...' defined in URL 에러가 났을 때 해결 방법에 대해 알아봅시다. Swagger 설정 시 주로 발생하는데, 수정하는 방법에 대해 알아봅시다.문제 발견Swagger 설정 중 아래와 같은 에러가 났다.UnsatisfiedDependencyException: Error creating bean with name '...' defined in URLUnsatisfiedDependencyException 관련해서 8개의 에러가 나타났다.원인spring context와 관련된 설정이 중복되어 발생한 에러이다.해결 방법@EnableWebMvc(@EnableSwagger2)를 사용하는 파일에서 @Configuration를 삭제한다. Spring 2022. 12. 6. 더보기 ›› [React] TypeError: Cannot read property 'location' of undefined 문제 및 원인 리액트 웹 개발 중 TypeError: Cannot read property 'location' of undefined 오류가 났다. props의 history를 읽지 못하는 오류였다. 해결책 history, location, match는 라우터에서 사용하는 객체이므로 컴포넌트에서 사용하려면 withRouter를 이용해서 export 해야 한다. 기존 export default 클래스 이름; 변경 import { withRouter } from 'react-router-dom'; export default withRouter(클래스 이름); 깨달은 점 export 할 때 항상 withAlert, whthRouter, connect 등을 썼는데 이유도 모른 채 썼다. 함수를 사용할 때 어떤 .. React 2021. 3. 29. 더보기 ›› 이전 1 다음