그런데 갑자기 override error가 생겼다.
java compiler 버젼은 1.6으로 바꾸면 된다는데 나는 해결이 안된다.
The method init() of type FirstServlet must override or implement a supertype method
라고 뜨고
Multiple markers at this line
- The method printIn(String) is undefined for the type
PrintStream
- Line breakpoint:FirstServlet [line: 14] - init()
The method doGet(HttpServletRequest, HttpServletResponse) of type FirstServlet must override or implement a
supertype method
The method printIn(String) is undefined for the type PrintStream
차례대로 이런 에러가 뜬다
나는 바보였다.
위에
The method init() of type FirstServlet must override or implement a supertype method라는 error는
FirstServlet 유형의 메서드 초기화()는 슈퍼타입 메서드를 재정의하거나 구현해야 한다. 라는 뜻인데
이제막 super랑 this 공부하던 참이라 빨리 찾을 수 있었다.
위의 코드를 빼먹어서 생긴 에러였다.
하지만 아래 에러는 그대로다.
두 가지 에러 중 첫번째는 저렇게 .만찍고 메서드를 호출했더니 사라졌다.
두번째 에러는 일단 큰문제가 아닌거 같아서 넘어가겠다.
'자바 웹을 다루는 기술' 카테고리의 다른 글
input tag에 hidden속성 (0) | 2020.09.16 |
---|---|
USD_RATE cannot be resolved to a variable (0) | 2020.09.16 |
response cannot be resolved (0) | 2020.09.16 |
6.4 서블릿 응답 처리 방법MIME-TYPE (0) | 2020.09.16 |
오라클 접속 에러 (0) | 2020.09.14 |