Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to use Tiles2 with Struts 1?

I've followed the instruction available at the migration guide http://tiles.apache.org/migration/index.html

But when I try to access my actions, I get this error:

org.apache.tiles.template.NoSuchAttributeException: Attribute 'body' not found.

I have in 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>

And 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>
share|improve this question

3 Answers

Make the following changes in your struts-config.xml

<controller processorClass=”org.apache.struts.tiles2.TilesRequestProcessor”/>
<plug-in className=”org.apache.struts.tiles2.TilesPlugin” >
share|improve this answer
this class does not exist: org.apache.struts.tiles2.TilesPlugin - where do I find it? – Daniel Cukier Dec 18 '12 at 18:33
you can download the plugin from this link mediafire.com/?awum0r3lwsar4uc – sumit sharma Dec 19 '12 at 7:39

Try editing tiles-defs.xml to

<definition name="mainTemplate" template="/common/templates/mainTemplate.jsp" />
<definition name="index" extends="mainTemplate">
    <put-list-attribute name="items" >
        <put-attribute name="body" type="string" value="/views/index/index.jsp"  />
    </put-list-attribute>
</definition>

let me know if this worked out.

share|improve this answer
The put-attribute does not exists in put-list-attribute I changed to add-attribute. It says: Attribute "name" must be declared for element type "add-attribute" – Daniel Cukier Dec 7 '12 at 17:05
Did you included the new definition tag ? <!DOCTYPE tiles-definitions PUBLIC "-//Apache Software Foundation//DTD Tiles Configuration 2.0//EN" "tiles.apache.org/dtds/tiles-config_2_0.dtd">; – Lucian Enache Dec 7 '12 at 18:11
yes, I did included it – Daniel Cukier Dec 7 '12 at 18:45

Yes its possible to use it with struts 1. Check their site.

Put attributes in you tiles file for mainTemplate Like:

<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>

If this did not work then try change your struts-config.xml like:

<?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>
share|improve this answer
this is the solution for Tiles 1. I need to use Tiles 2 – Daniel Cukier Dec 18 '12 at 18:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.