프로젝트 진행중 다음과 같은 에러가 발생하였다. 이미 git에 있는 파일들을 clone해온 소스코드들인데 뭔가 이상하다는 느낌을 받는다.. 이미 git에 올라갔다는 것은 코드검증을 모두 거치고 돌아가는 것을 확인했다는 것인데 나의 로컬에서는 왜 안되는 것일까.. Caused by: java.io.FileNotFoundException: class path resource [mybatis/mapper/] cannot be resolved to URL because it does not exist at org.springframework.core.io.ClassPathResource.getURL(ClassPathResource.java:195) ~[spring-core-5.2.3.RELEASE.jar:5.2..
아침에 일어나서 프로그래밍 공부를 하기위해 개발용 데이터베이스 서버를 켜기위해 VMWare를 켜는 데 아래와 같은 오류가 발생하였다. 오류메시지의 내용은 아래와 같다. This virtual machine appears to be in use. If this virtual machine is not in use, press the "Take Ownership" button to obtain ownership of it. Otherwise, press the "Cancel" button to avoid damaging it. Configuration file: C:\Users\jabel\Documents\virtualMachineImage\CentOS\CentOS.vmx. 대략적인 내용을 살펴보건데 가상머..
오늘 어느정도 일단락된 프로젝트를 Cafe24 웹서비스에 올렸는데 java.util.concurrent.executionexception: java.lang.outofmemoryerror: metaspace 와 같은 메시지와 함께 서비스가 안올라가지는 현상이 발견되었다. 그래서 이곳저곳 찾다가 Cafe24에서 기본적으로 할당해주는 Tomcat의 메모리의 양이 적어서 나타나는 현상이라는 것을 알 수 있었다. 이에 대한 해결책으로는 ${CATALINA_HOME}/bin/catalina.sh 파일에 다음의 명령어를 추가해 주면 된다. JAVA_OPTS="-Djava.awt.headless=true -Dfile.encoding=UTF-8 -server -Xms1024m -Xmx1024m -XX:NewSize=5..