Attribute theme invalid for tag head according to TLD

Attribute theme invalid for tag head according to TLD

在struts-2.3.7中加入这个标签<struts:headtheme="ajax"/>,报错
 严重: Template processing error: "Expression parameters.parseContent is undefined on line 45, column 28 in template/ajax/head.ftl."



Expression parameters.parseContent is undefined on line 45, column 28 in template/ajax/head.ftl.

The problematic instruction:

----------

==> ${parameters.parseContent?string} [on line 45, column 26 in template/ajax/head.ftl]

后在网上一查才知道出现此问题的原因:在jsp页面用到了struts提供的ajax主题,但是声明主题时出现问题,struts2.0到struts2.1有一个重要的改变就是对ajax支持的改变,struts2.0的ajax支持主要以DWR和dojo为主,并专门提供ajax主题,如:,但是在struts2.1不再提供ajax主题,而将原来的ajax主题放入了dojo插件中,我们需要将dojo标签引入到jsp页面, 再改为

<%@ taglib uri="/struts-tags" prefix="struts"%> 

<%@ taglib uri="/struts-dojo-tags" prefix="sx"%> 

<sx:head theme="ajax"/>

后又出现异常Attribute theme invalid for tag head according to TLD

经过网上查询,又将上面<sx:head theme="ajax" />改成下面这两行,其他的不用改:

<struts:head theme="xhtml"/>

<sx:head parseContent="true"/>

问题解决了,但是原因还是没弄明白。

你可能感兴趣的:(Attribute theme invalid for tag head according to TLD)