Tomcat:The server encountered an internal error () that prevented it from fulfilling this request.

编写文件

putImage.jsp文件使用 Tag标记

<%@ page contentType="text/html;Charset=GB2312" %>
<%@ taglib tagdir="/WEB-INF/tags" prefix="pic"%>
 
  表格每行重复显示一幅图像
                      //这里不要有空格
      
    
      
    
      
    

Image.tag文件


       
       
       

server.xml中插入虚拟目录作为Web服务目录
在这里插入图片描述
Tag文件存放的位置如图所示:(这是错误的方式,下面会讲解)
在这里插入图片描述

在Tomcat中执行文件

http://localhost:8070/cloud/ch3/putImage.jsp

运行结果

description
The server encountered an internal error () that prevented it from fulfilling this request.
exception
org.apache.jasper.JasperException: /putImage.jsp(6,5) No tag “” defined in tag library imported with prefix “pic”
Tomcat:The server encountered an internal error () that prevented it from fulfilling this request._第1张图片
下面来解释问题出现的两种可能情况:

  1. 在编写时,会写成,中间是不允许添加空格的,所以删掉即可。
  2. Web服务目录存放WEB-INF设置错误,很多人会多建一个子目录,然后将WEB-INF放在里面(上文有错误存放)。
    Tag文件的存储目录格式为:Web服务目录\WEB-INF\tags
    下面是正确的
    在这里插入图片描述
    为什么呢?因为WEB-INF是放在Web服务目录里的,大家可能没注意Web服务目录,一种Web服务目录是webapps文件夹下的任意一个文件夹,例如:\webapps\ch3,那么WEB-INF就放在ch3里,若是\webapps\daima\ch3\WEB-INF,则运行出现错误。
    第二种情况是运用的虚拟目录,那么Web服务目录就是这个虚拟目录了在这里插入图片描述
    WEB-INF应直接存放在D:\jsp里,即虚拟目录cloud里,正确:D:\jsp\WEB-INF。不能再放到虚拟目录的子文件夹里
    错误的存放:D:\jsp\ch3\WEB-INF
    最后改正确之后:
    Tomcat:The server encountered an internal error () that prevented it from fulfilling this request._第2张图片

大家多多支持呀

你可能感兴趣的:(BugList,jsp,tomcat)