WEB_INF/web.xml 생성 방법

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="<http://www.w3.org/2001/XMLSchema-instance>" xmlns="<https://jakarta.ee/xml/ns/jakartaee>" xsi:schemaLocation="<https://jakarta.ee/xml/ns/jakartaee> <https://jakarta.ee/xml/ns/jakartaee/web-app_6_0.xsd>" version="6.0">
<display-name>Myweb01</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<error-page>
<error-code>404</error-code>
<location>/week10/exception/error404.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/week10/exception/error500.jsp</location>
</error-page>
<error-page>
<exception-type>java.lang.ArithmeticException</exception-type>
<location>/week10/exception/error_page.jsp</location>
</error-page>
</web-app>