关于web.xml中不能识别taglib的问题
上午在学习struts-i18n的扩展-jstl-i18n的时候遇到一个问题:
The absolute uri: http://java.sun.com/jsp/jstl/fmt cannot be resolved in either web.xml or the jar files deployed with this application
错误导致页面报告500……
经过查阅得到结果:未引用jar包。
问题解决:将jstl用到的两个jar包jstl.jar和standard.jar copy到WEB-INF下即可。
详述如下:在jsp页面使用jstl标签 fmt 需要首先在jsp页面头部分引用,即<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>。
整个页面代码如下:
<%@ page language="java" contentType="text/html; charset=GB18030"
pageEncoding="GB18030"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<fmt:setBundle basename="resource.MessageResources"/>
<form action="login.do" method="post">
<fmt:message key="login.form.filed.username">:<input type="text" name="username"/>
<fmt:message key="login.form.filed.password">:<input type="text" name="password"/>
<input type="submit" value="<fmt:message key="login.form.button.login"/>"/>
其中
<fmt:setBundle basename="resource.MessageResources"/>
是设置国际化文本的来源。
<fmt:message key="login.form.filed.username">
<fmt:message key="login.form.filed.password">
<fmt:message key="login.form.button.login"/>
就是用来显示国际化文本的fmt标签。由于jstl所用的两个jar包,我开始未引用到WEB-INF文件夹下,造成页面显示报错。
补充:Web开发 , 其他 ,