한바다
서블릿 실행 오류 난감 본문
☑ 서블릿 이클립스에서 html 내 영어 오타가 나서 아래와 같이 오류가 났다.
[오류코드]
<h3 id="message"></h3>
<h3 id="num1"></h3> <!-- num1 숫자 1000 -->
<script th:inline="javscript">
[노출화면]
위와 같이 에러코드가 ' An error happened during template parsing (template: "class path resource [templates/example/ex5.html]")' 라고 나오지만 정확히 어디에서 났는지는 나오지 않아 난감하다.
나중에 debug로 잡을 수 있다고 하니 그때 다시 리뷰 하겠다!!
[수정된 코드]
<h3 id="message"></h3>
<h3 id="num1"></h3> <!-- num1 숫자 1000 -->
<script th:inline="javascript">
[정상 노출 화면]
'servlet' 카테고리의 다른 글
Cause: java.sql.SQLException: error code [17034] 해당 위치에 지원되지 않는 SQL92 토큰 오류 포함 (0) | 2024.06.18 |
---|---|
서블릿 실행 오류 There was an unexpected error (type=Internal Server Error, status=500). (0) | 2024.06.17 |
서블릿 실행 오류 ERROR[templates/index.html]") (1) | 2024.06.13 |
@RequestMapping 과 @GetMapping (0) | 2024.06.11 |
서블릿(Servlet)시작 과 ERR_CONNECTION_REFUSED (0) | 2024.06.10 |