설정 오류 페이지

772 단어 htmlWebxml
웹 개발 에 서 는 서버 오류 나 경로 요청 이 잘못 되 었 을 때 불 친절 한 페이지 가 나타 날 수 있 습 니 다. 자신 이 설정 한 알림 이 나타 나 려 면
웹. xml 파일 에서 설정:
  <!--        -->  
  <error-page>
            <error-code>404</error-code> 
            <location>/pagenotfound.html</location> 
 </error-page>

<error-page>
            <error-code>505</error-code> 
            <location>/requesterror.html</location> 
 </error-page>
  <!--      --> 
 <error-page>  
          <exception-type>java.lang.Exception</exception-type>   
          <location>/error.html</location>  
</error-page>
 

좋은 웹페이지 즐겨찾기