当我在WebLogic8.x上部署示例ajaxanywhere应用程序时,它工作得很好。当我将它部署到weblogic 11g时,我会得到下面的错误
disp2.jsp:2:5: No tag library could be found with this URI. Possible causes could be that the URI is incorrect, or that there were errors during parsing of the .tld file.
<%@ taglib prefix="aa" uri="http://ajaxanywhere.sourceforge.net/" %>
^----^示例应用程序可以从这里下载http://sourceforge.net/projects/ajaxanywhere/files/AjaxAnywhere%20Demo%20WAR/1.2/ (我使用了1.2,但1.2-rc3也有相同的问题)。
我试过..。
仍然有同样的问题。如果我能确定出了什么问题,我愿意从源头重建ajaxanywhere。我倾向于某种类型的JSTL库不兼容。
有什么想法吗?
发布于 2011-08-17 18:51:05
oracle支持发现,如果从URI中删除了尾随斜杠,它就能工作。因此,不是
URI=http://ajaxanywhere.sourceforge.net/ URI应该是
URI=http://ajaxanywhere.sourceforge.nethttps://stackoverflow.com/questions/7017176
复制相似问题