# ERROR: 2024-11-14 15:51:29,179 ERROR [com.cobim.cobimproj.exception.GlobalExceptionHandler] handleException: {} org.springframework.http.converter.HttpMessageNotWritableException: Could not write JSON: Infinite recursion (StackOverflowError); nested exception is com.fasterxml.jackson.databind.JsonMappingException: Infinite recursion (StackOverflowError) (through reference chain: owError) (thro..
에러 : React Hook "useState" is called conditionally. React Hooks must be called in the exact same order in every component render # 원인 react에선 hook 앞에 hook이 아닌 함수들 존재할시 나타나는 에러. # React Hook 이란 :React에서 상태(state)와 생명주기(lifecycle) 같은 기능을 함수형 컴포넌트에서 사용할 수 있게 해주는 함수입니다. 예전에는 상태나 생명주기 같은 기능을 클래스형 컴포넌트에서만 사용할 수 있었는데, React Hooks를 사용하면 함수형 컴포넌트에서도 이러한 기능을 손쉽게 사용할 수 있습니다. # 해결 ex) if (!card) return Load..
[error]spring controller에서 file upload 해서 db에 저장할때, Content type 'application/octet-stream' not supported 같은 에러가 나올때 해결하는 방법. [해결]import com.fasterxml.jackson.databind.ObjectMapper;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.http.MediaType;import org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter;import org.springframework.st..
# 에러 내용 : ERROR in ./src/App.js 7:0-74 Module not found: Error: Can't resolve 'react-router-dom' in ERROR in ./src/components/Hello.js 6:0-26 Module not found: Error: Can't resolve 'axios' in # 원인 : react에서 해당 하는 라이브러리(모듈)를 사용할때, 설치 되어 있지 않을때 나는 에러. # 해결해당 하는 라이브러리를 설치해주면 됨.터미널 해당 react 위치에서npm install axios --save npm install react-router-dom 후에 다시 npm start 시작 하기