본문 바로가기

Tips/Errors26

[java][jsp]Only a type can be imported. ...... resolves to a package SpringBoot + jsp + 외장톰캣 프로젝트에서 jsp 페이지를 호출했을 때 아래와 같은 오류가 발생했다. org.apache.jasper.JasperException: JSP를 위한 클래스를 컴파일할 수 없습니다.: 코드 생성된 자바 파일 [C:\apache-tomcat-8.5.53\work\Catalina\localhost\user\org\apache\jsp\xml\test_005fcontents_jsp.java]의 [15] 행에서 오류가 발생했습니다. Only a type can be imported. org.apache.commons.lang3.StringUtils resolves to a package StringUtils 외에도 모든 import 된 클래스에서 에러 메세지가 찍혔다. s.. 2020. 6. 2.
[nodejs][nodemailer][gsmtp]Invalid login: 535-5.7.8 Username and Password not accepted 분명 앱비밀번호 단계까지 안가더라도 가능했었다. 헌데 이번에 구현해보려하니 안되더라. 아래 글 덕에 살았다. https://tristan91.tistory.com/530 2020. 5. 20.
[NodeJS, GCP] 반영시 오류 cannot find module /srv/server.js, cannot find module ./bin/www 로컬호스트에서 테스트하거나 EC2에서 작업해도 문제가 없는 소스였다. GCP AppEngine에 올리려고 하자 이런 오류를 만났다. 2020-03-09 11:00:01 default[20200309t195715] "GET / HTTP/1.1" 500 2020-03-09 11:00:03 default[20200309t195715] internal/modules/cjs/loader.js:638 2020-03-09 11:00:03 default[20200309t195715] throw err; 2020-03-09 11:00:03 default[20200309t195715] ^ 2020-03-09 11:00:03 default[20200309t195715] 2020-03-09 11:00:03 default[20.. 2020. 3. 9.
[jsp]jsp 프로젝트 import시 javax.servlet.http.HttpServlet... 오류 jsp 프로젝트를 import해서 돌려볼 일이 생겼다. sts에 import했는데 이런 오류 메세지가 쏟아졌다. Multiple annotations found at this line: - The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path 서버 라이브러리가 추가되지 않아서 생기는 오류다. 프로젝트 우클릭 > Build Path > Configure Build Path > Server Runtime을 선택하고 tomcat을 사용할 버전에 맞게 선택해서 추가해준다. ++ 이클립스에서 만든 Dynamic Web Project는 기본적으로 WebContent라는 폴더를 만들어 그 폴더를 루트로 읽는다. 하지만 .. 2020. 3. 2.