[JSP] .html 파일 연결 을 위한 web.xml 설정

2022. 4. 12. 17:07JSP

홈페이지를 제작하면서 일반적으로 controller 와 jsp 메칭을 하여 작업을 진행하던중

 

naver 웹마스터 도구 소유권 등록을 위하여 naver************.html 파일을 업로드하여 호출할 일이 생겨서 

 

찾아보니 web.xml 설정을 추가하면 간단히 해결 할수 있는것을 알게 되엇습니다.

 

그리고 컨트롤러를 사용하지 않고 바로 접속을 하기 때문에 webapp 폴더 바로 아래에 넣어서 사용하면 됩니다.

 

코드는 다음과 같습니다.

 

	<servlet>
		<servlet-name>htmlServlet</servlet-name>
		<servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
		<load-on-startup>2</load-on-startup>
	</servlet>
	 
	<servlet-mapping>
		<servlet-name>htmlServlet</servlet-name>
		<url-pattern>*.html</url-pattern>
	</servlet-mapping>

 

참조 URL : https://blog.naver.com/PostView.nhn?blogId=deersoul6662&logNo=222182745044&categoryNo=0&parentCategoryNo=0&viewDate=&currentPage=1&postListTopCurrentPage=1&from=postView