본문 바로가기

error22

협업시 git clone 후 Project and External Dependencies 안 나올 때 문제 상황 git clone으로 현업하는 사람 url로 받아왔지만 Project and External Dependencies가 나오지 않아서 라이브러리를 다운받을 수 없었다. settings.gradle에서 rootProject.name을 프로젝트 이름과 동일하게 나오지 않아서 생겼던 오류였다. 이름을 동일하게 하고 다시 새로고침을 했더니 Project and External Dependencies가 생겼다! 2022. 4. 5.
[서버에게 매개변수 값 주기]Optional int parameter is present but cannot be translated into a null value due to being declared as a primitive type java.lang.IllegalStateException:Optional int parameter 'reviewno' is present but cannot be translated into a null value due to being declared as a primitive type. Consider declaring it as object wrapper for the corresponding primitive type. 문제 상황 및 해결 내가 하고 싶었던 것은 후기글에서 수정을 누르면 후기글폼이 나와야했는데 저렇게 오류가 떴다. 알고보니 후기글에서 수정을 누를때 매개변수 값을 안줘서 오류가 났던 것이다. 매퍼(기존에 만들어놨던 select 쿼리문을 사용했다.) select reviewno, us.. 2022. 3. 26.
Org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'memberController': Unsatisfied dependency expressed through field 'service'; nested org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'memberController' : Unsatisfied dependency expressed through field 'service'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'memberServiceImpl': Unsatisfied dependency expressed through field 'dao'; nested exception is org.springfr.. 2022. 3. 17.
Something is already running on port 3000 문제 상황 react를 쓰는데 npm runt start로 실행하려고 했더니? Something is already running on port 3000 Would you like to run the app on another port instead? 이게 나왔다.. 이뜻은 3000번 포트를 이미 실행시키고 있기 때문에 다른 프로젝트가 포트를 사용할 수 없다는 것이어서 3000번 포트를 죽여야 한다. 1. 특정 포트 검색 : netstat -ano netstat명령어를 통해 찾고 있는 port의 PID를 알아낸다. find 명령어와 함께 사용하면 쉽게 특정 포트를 확인할 수 있다. netstat -ano | find "3000" 이렇게 하면 출력된 결과 중 "3000"이 포함된 부분만 출력된다. 2. 특.. 2022. 2. 19.