No tag "datetimepicker" defined in tag library imported with prefix "s"解决办法

今天使用Struts-2.2.1 中Struts标签的时候出现下面错误

No tag "datetimepicker" defined in tag library imported with prefix "s"
这个错误主要是由于原因:

struts2.1.6 把struts2.0中的和ajax相关的,如datetimepicker,tree,treenode 都移动到了dojo中了

解决方法如下:

1.jsp中加入如下内容 
<%@ taglib prefix="sx" uri="/struts-dojo-tags" %>
 2.<head>中加入下列 
<head>  
  <s:head /> 
  <sx:head />  
</head> 
3.页面中使用

<sx:datetimepicker name="birthday" label="生日:" displayFormat="yyyy-MM-dd"></sx:datetimepicker>

4.项目中引入struts2-dojo-plugin-2.2.1.1.jar 放在/web-inf/lib下。
 

你可能感兴趣的:(struts,职场,tag,datetimepicker,休闲)