문제spring 프로젝트 도중 application.properties에 logging.level.org.apache.coyote.http11=trace를 추가해 HTTP 요청을 메시지 로그로 확인하려고 하였는데 아래와 같은 오류가 발생했다java.io.EOFException: null at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) ~[tomcat-embed-core-10.1.24.jar:10.1.24] at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) ~[tomcat-emb..
에러 모음 ❗⚠️
오류Intellij에서 프로젝트 생성 뒤 github와 연동시키는 과정에서 다음과 같은 오류가 발생했다error: src refspec main does not match anyerror: failed to push some refs to 'https://github.com/rosa2070/fcjavaminiproject.git' 이러한 에러 메시지는 로컬에서 "main" 브랜치에 대한 푸시가 실패했다는 것을 나타낸다. 일반적으로 이 에러는 "main" 브랜치가 로컬에서 아직 생성되지 않아서 또는 현재 작업 중인 커밋이 없어서 발생할 수 있다해결방법1. 로컬에서 "main" 브랜치 생성:git checkout -b main위 명령은 "main" 브랜치를 생성하고 해당 브랜치로 전환한다 2. 로컬에서 변경..
anaconda prompt에서 깃허브를 클론하고 requirements.txt를 실행하는 과정에서 다음과 같은 오류가 발생했다. ERROR: Could not find a version that satisfies the requirement sentencepiece==0.1.85 (from versions: 0.0.0, 0.0.2, 0.0.3, 0.0.4, 0.0.5, 0.0.6, 0.0.7, 0.0.9, 0.1.0, 0.1.1, 0.1.2, 0.1.3, 0.1.83, 0.1.86, 0.1.91, 0.1.92, 0.1.94, 0.1.95, 0.1.96, 0.1.97, 0.1.98, 0.1.99) ERROR: No matching distribution found for sentencepiece==0.1..
nodejs 프로젝트를 npm run start 하였는데 다음과 같은 에러가 났다. MongoParseError: Invalid scheme, expected connection string to start with "mongodb://" or "mongodb+srv://" 알고보니 mongoURI에 띄어쓰기로 인해 발생된 에러였다. mongoURI: 'mongodb + srv://[몽고디비계정]@boilerplate.nbsovwf.mongodb.net/?retryWrites=true&w=majority' 로 되어있던 것을 띄어쓰기를 제거해 mongoURI: 'mongodb+srv://[몽고디비계정]@boilerplate.nbsovwf.mongodb.net/?retryWrites=true&w=majori..

nodejs에서 npm run start를 실행하였는데 다음과 같은 에러가 떴다. Emitted 'error' event on Server instance at: at emitErrorNT (node:net:1399:8) at processTicksAndRejections (node:internal/process/task_queues:83:21) { code: 'EADDRINUSE', errno: -4091, syscall: 'listen', address: '::', port: 5000 } 포트가 이미 사용중이라는 에러이다. 해결법은 해당 포트를 삭제하는 것이다. 해결방법 윈도우의 경우) cmd 창에 다음의 코드를 입력한다. netstat -ano | findstr "포트번호" 그러면 다음과 같이 pi..