본문 바로가기
반응형

Error12

[Spring] java.net.MalformedURLException: no protocol 에러 해결 방법 🚨 Srping 실행 후 URL 처리 시 발생한 에러 메시지java.net.MalformedURLException: no protocol: at java.base/java.net.URL.(URL.java:674) ~[na:na]at java.base/java.net.URL.(URL.java:569) ~[na:na]at java.base/java.net.URL.(URL.java:516) ~[na:na] ❓에러 발생 이유URL을 전송할 때 protocol이 빠져있거나, URL이 공백으로 전달되면 나타나는 에러 메시지입니다.예를들어 URL을 https://httpbin.org/post 형식으로 전달해야 하지만httpbin.org/post 또는 ""로 전달할 경우에 나타나는 에러 메시지입니다. ✅ 해결 방법U.. 2024. 11. 15.
[QueryDSL] Could not find com.querydsl:querydsl-apt: 5.0.0. 오류 해결 방법 🚨 Build 실행 후 발생한 에러 메시지itemservice-db:main: Could not find com.querydsl:querydsl-apt: 5.0.0.Required by:    project :Possible solution:- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html ❓에러 발생 이유Spring이 해당 라이브러리를 찾지 못해서 발생하는 에러 메시지입니다.저의 경우에는 com.querydsl:querydsl-apt: 5.0.0에서공백이 발생하여 해당 라이브러리를 찾지 못해 나타난 에러.. 2024. 7. 22.
[ React ] Expected an assignment or function call and instead saw an expression 오류 해결 방법 💥 React 실행 후 발생한 에러 메시지ERROR[eslint] src/App.js Line 49:13: Expected an assignment or function call and instead saw an expression no-unused-expressionsSearch for the keywords to learn more about each error. ✅ 해결 방법'{'를 생략해 줍니다.setTodoData(prev => {[...prev, newTodo]})setTodoData(prev => [...prev, newTodo]) 2024. 7. 15.
[ React ] Warning: Each child in a list should have a unique "key" prop. 오류 해결 방법 💥 React 실행 후 발생한 에러 메시지Warning: Each child in a list should have a unique "key" prop.Check the render method of `App`. See https://reactjs.org/link/warning-keys for more information.❓에러 발생 이유React의 리스트 엘리먼트 요소에 key 값이 없어서 발생하는 오류입니다.React는 가상 DOM을 사용하여 Diffing 작업을 수행합니다.하지만 key 값이 없으면 각각의 리스트 요소를 구분할 수 없기 때문에 발생하는 오류 에러 메시지입니다.참고로 key 값은 유니크해야 합니다. 추가로 아래는 React 공식문서로 key에 대한 설명글입니다.https://re.. 2024. 7. 12.
반응형