Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My project is a struts2 with tiles project. I am using multiple layout in tiles. I have an issue in getting value from the action class.

struts.xml :

    <action name="Load" method="getDetails"
        class="myAction">
        <result name="showDetail" type="tiles">overview.page</result>
    </action>

My tiles.xml :

<definition name="editor.layout" template="/jsp/layout/EditorLayout.jsp">
    <put-attribute name="title" value="Title" />
    <put-attribute name="header" value="/jsp/includes/header.jsp" />
    <put-attribute name="content" value="" />
    <put-attribute name="footer" value="/jsp/includes/footer.jsp" />
</definition>

<definition name="overview.page" extends="editor.layout">
    <put-attribute name="title" value="Overview" />
    <put-attribute name="content" value="overview.layout" />
</definition>

<definition name="overview.layout" extends="overviewTab.layout">
    <put-attribute name="viewName" value="Details" />
    <put-attribute name="viewFrameSrc" value="jsp/viewDetails.jsp" />
</definition>

<definition name="overviewTab.layout" template="/jsp/layout/OverviewLayout.jsp">
    <put-attribute name="tab" value="/jsp/includes/tab.jsp" />
    <put-attribute name="viewName" value="default" />
    <put-attribute name="viewFrameSrc" value="default" />
</definition>

viewDetails.jsp :

<s:property value="name" />

I have written a jquery to call the action class. I am getting only null value in this property tag.

Actiton class:

public class myAction extends ActionSupport {
    private String name;

    public String getName() {
        System.out.println("name get" + name);
        return name;
    }

    public void setnName(String name) {
        this.name = name;
    }

    public String getDetails() {
        name = "my name";
        return "showDetail";
    }
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.