是否可以在Struts 1中使用Tiles2?
我已按照迁移指南http://tiles.apache.org/migration/index.html
上提供的说明进行操作但是当我尝试访问我的操作时,我收到此错误:
org.apache.tiles.template.NoSuchAttributeException: Attribute 'body' not found.
我有struts-config.xml:
<controller processorClass="org.apache.struts.tiles.TilesRequestProcessor"
maxFileSize="10M" tempDir="/tmp" />
<plug-in className="org.apache.struts.tiles.TilesPlugin">
<set-property property="definitions-config" value="/WEB-INF/tiles-defs.xml" />
</plug-in>
并且tiles-defs.xml
<definition name="mainTemplate" template="/common/templates/mainTemplate.jsp" />
<definition name="index" extends="mainTemplate">
<put-attribute name="body" type="string" value="/views/index/index.jsp" />
</definition>
答案 0 :(得分:1)
在 struts-config.xml
中进行以下更改<controller processorClass=”org.apache.struts.tiles2.TilesRequestProcessor”/>
<plug-in className=”org.apache.struts.tiles2.TilesPlugin” >
查找Tiles2插件here的来源。
答案 1 :(得分:-2)
是的,它可以与struts 1一起使用。Check their site。
将属性放在mainTemplate的tile文件中,如:
<definition name="mainTemplate" path="/common/templates/mainTemplate.jsp">
<put name="title" value="Tiles Example" />
<put name="header" value="/header.jsp" />
<put name="menu" value="/menu.jsp" />
<put name="body" value="/body.jsp" />
<put name="footer" value="/footer.jsp" />
</definition>
如果这不起作用,请尝试更改您的struts-config.xml
,如:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_3.dtd">
<struts-config>
<action-mappings>
<action
path="/User"
type="org.apache.struts.actions.ForwardAction"
parameter="/pages/user/user-form.jsp"/>
</action-mappings>
<plug-in className="org.apache.struts.tiles.TilesPlugin" >
<set-property property="definitions-config"
value="/WEB-INF/tiles-defs.xml"/>
</plug-in>
</struts-config>