本人配置以个AllControl.tld的文件用来调用getAllPrecess()方法!
AllControl.tld的配置文本如下:<?xml version="1.0" encoding="UTF-8" ?>
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
version="2.0">
<description>A tag library exercising SimpleTag handlers.</description>
<tlib-version>1.0</tlib-version>
<short-name>SimpleTagLibrary</short-name>
<uri>/SimpleTagLibrary</uri><function>
<description>per page for display the process</description>
<name>getAllPrecess</name>
  <function-class>com.lypp.Control.ProcessManage</function-class>
  <function-signature>java.util.Vector getAllPrecess()</function-signature>
</function>
</taglib>而后又配置了一下web.xml文件。文本如下:<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">
<display-name>SendProcess</display-name><taglib>
   <taglib-uri>
   www.lypp.com/Control
   </taglib-uri>
   <taglib-location>
   /WEB-INF/tld/AllControl.tld
   </taglib-location>
</taglib>
</web-app>
最后再页面中加载:
<%@ taglib prefix="me" uri="www.lypp.com/Control" %>
${me:getAllProcess()}
出现错误提示:
The function getAllProcess cannot be located with the specified prefix
是什么问题!求救!!!!