I m new to JSP, using Eclipse, and am trying to just get started with templates. I ve imported template.tld into WebContent/WEB-INF/tlds. Guide: http://www.javaworld.com/jw-09-2000/jw-0915-jspweb.html
当我进行试验时。 jsp档案,我发现这一错误:
org.apache.jasper.JasperException: /test.jsp(3,0) Unable to load tag handler class "tags.templates.InsertTag" for tag "template:insert"
我试图搜索谷歌,但无法找到解决办法。 任何帮助都将受到高度赞赏。
template.jsp
<%@ taglib uri= /WEB-INF/tlds/template.tld prefix= template %>
<html><head><title><template:get name= title /></title></head>
<body>
Welcome!<br />
<template:get name= content />
</body></html>
test.jsp
<%@ taglib uri= /WEB-INF/tlds/template.tld prefix= template %>
<template:insert template= /template.jsp >
<template:put name= content content= this is our website />
</template:insert>