Eclipse 4

Eclipse) The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path

이클립스에서 개발하는 도중 아래와 같은 에러 메시지가 발생했습니다. The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path 해결방법은 간단합니다. 1. 프로젝트 우클릭 -> properties 클릭 2. Project Facets -> Java -> Runtime 3. 자신이 사용하는 Apache Tomcat 버전 체크 -> Apply and Close 4. 해결!

[DEV] 기록 2020.09.16

Eclipse ctrl + space 자동완성이 안 될 경우

보통 Eclipse에서 개발을 할 때 ctrl + space를 눌러 자동완성을 하는데 No default proposals라는 문구가 뜨면서 자동완성이 안되는 경우가 있습니다. 이런 경우에는 아래와 같이 해결을 하면 됩니다. 메뉴 상단에 Windows > Preferences > Java > Editor > Content Assist > Advanced 순으로 들어가 아래와 같이 default proposal kinds를 추가해주면 됩니다. [출처] stackoverflow.com/questions/908489/eclipse-java-code-completion-not-working

[DEV] 기록 2020.09.10

STS(Spring Tool Suite) ini 파일 설정

현재 개발을 STS를 사용하여 진행하고 있는데 컴퓨터 성능에 비해 이클립스가 사용하는 메모리가 적은 것 같아 ini 파일을 수정하는 김에 내용을 공유합니다. * STS 말고 Eclipse를 사용하는 경우 STS.ini가 아닌 Eclipse.ini 에서 설정해주시면 됩니다. STS.ini -startup plugins/org.eclipse.equinox.launcher_1.5.500.v20190715-1310.jar --launcher.library plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426 -product org.springsource.sts.ide --launcher.defaultAction openFi..

[DEV] 기록 2020.07.03