You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "John Norvell (JIRA)" <ji...@apache.org> on 2009/03/17 16:35:04 UTC

[jira] Updated: (WW-2762) struts2 nested tiles

     [ https://issues.apache.org/struts/browse/WW-2762?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

John Norvell updated WW-2762:
-----------------------------

    Attachment: norvell41.vcf

I asked in several of the mailing lists and never got a single reply.

-John

Musachy Barroso (JIRA) wrote:
    [ [1]https://issues.apache.org/struts/browse/WW-2762?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=45728#action_45728 ] 

Musachy Barroso commented on WW-2762:
-------------------------------------

Did you ask in the user mailing list? This seems like some bad filter config, but I couldn't say for sure

  
struts2 nested tiles
--------------------

                Key: WW-2762
                URL: [2]https://issues.apache.org/struts/browse/WW-2762
            Project: Struts 2
         Issue Type: Bug
         Components: Plugin - Tiles
   Affects Versions: 2.0.6
        Environment: Windows XP Professional, MyEclipse 6.0.1, Struts2, Tiles 2.0.6, J2EE 1.4, JDK 5.0, JBoss 4.2.2 
           Reporter: Bips Sadhwani
            Fix For: 2.1.7


I have this wierd issue with tiles.  Probably its a bug.
I am trying to insert a tile (a jsp page) into another tile (a jsp page) and so this is my config (simplified):
     
    tiles.xml
    ---------
     
    <definition name="rootPage.index" template="layout.jsp"> 		
    	<put-attribute name="pagetitle" value="Page Body Title" />
    	<put-attribute name="header" value="header.jsp" />
    	<put-attribute name="footer" value="footer.jsp" />
    </definition>
     
    <definition name="searchEmployee.index" extends="rootPage.index">	
    	<put-attribute name="body" value="searchEmpBody.index" />
    <definition name="searchEmpBody.index"
    		template="/searchEmployee.jsp"/>
    </definition>
     
    <definition name="status.index" template="/status.jsp">
    </definition>
     
    layout.jsp
    -----------
     
    <body>
        <div class="container">
    	<div id="header">
    	    <tiles:insertAttribute name="header" />
    	</div>	
    	
    	<div id="mainContent">	                   		
    		<tiles:insertAttribute name="body" />
    	</div>		
        </div>
    </body>
Now following are the things I try on my searchEmployee.jsp
     
searchEmployee.jsp - This works
    <%@ taglib prefix="tiles" uri=[3]"http://tiles.apache.org/tags-tiles"%>
    <%@ taglib prefix="s" uri="/struts-tags" %>
     
    <tiles:insertDefinition name="status.index"/>
searchEmployee.jsp - This also works
    <%@ taglib prefix="tiles" uri=[4]"http://tiles.apache.org/tags-tiles"%>
    <%@ taglib prefix="s" uri="/struts-tags" %>
     
    <s:form action="listEmployees">
    	<tiles:getAsString name="pagetitle"/>	
    </s:form>
searchEmployee.jsp - This does  work (only if I use tiles:insertDefinition below s:form)
    <%@ taglib prefix="tiles" uri=[5]"http://tiles.apache.org/tags-tiles"%>
    <%@ taglib prefix="s" uri="/struts-tags" %>
     
    <s:form action="listEmployees">		    	
    </s:form>
<tiles:insertDefinition name="status.index"/>
searchEmployee.jsp - This does NOT work (if I use tiles:insertDefinition above or within s:form things don't work)
    <%@ taglib prefix="tiles" uri=[6]"http://tiles.apache.org/tags-tiles"%>
    <%@ taglib prefix="s" uri="/struts-tags" %>
     
    <s:form action="listEmployees">		
    	<tiles:insertDefinition name="status.index"/>
    </s:form>
I get a long exception stack trace which basically says nullptrexception.
I've done the same thing using tiles1.x and it has always worked.
Tks
    

  
----------------------------------------------------------------------------------------
[1] https://issues.apache.org/struts/browse/WW-2762?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=45728#action_45728
[2] https://issues.apache.org/struts/browse/WW-2762
[3] http://tiles.apache.org/tags-tiles
[4] http://tiles.apache.org/tags-tiles
[5] http://tiles.apache.org/tags-tiles
[6] http://tiles.apache.org/tags-tiles


> struts2 nested tiles
> --------------------
>
>                 Key: WW-2762
>                 URL: https://issues.apache.org/struts/browse/WW-2762
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Plugin - Tiles
>    Affects Versions: 2.0.6
>         Environment: Windows XP Professional, MyEclipse 6.0.1, Struts2, Tiles 2.0.6, J2EE 1.4, JDK 5.0, JBoss 4.2.2 
>            Reporter: Bips Sadhwani
>             Fix For: 2.1.7
>
>         Attachments: norvell41.vcf
>
>
> I have this wierd issue with tiles.  Probably its a bug.
> I am trying to insert a tile (a jsp page) into another tile (a jsp page) and so this is my config (simplified):
>      
>     tiles.xml
>     ---------
>      
>     <definition name="rootPage.index" template="layout.jsp"> 		
>     	<put-attribute name="pagetitle" value="Page Body Title" />
>     	<put-attribute name="header" value="header.jsp" />
>     	<put-attribute name="footer" value="footer.jsp" />
>     </definition>
>      
>     <definition name="searchEmployee.index" extends="rootPage.index">	
>     	<put-attribute name="body" value="searchEmpBody.index" />
>     <definition name="searchEmpBody.index"
>     		template="/searchEmployee.jsp"/>
>     </definition>
>      
>     <definition name="status.index" template="/status.jsp">
>     </definition>
>      
>     layout.jsp
>     -----------
>      
>     <body>
>         <div class="container">
>     	<div id="header">
>     	    <tiles:insertAttribute name="header" />
>     	</div>	
>     	
>     	<div id="mainContent">	                   		
>     		<tiles:insertAttribute name="body" />
>     	</div>		
>         </div>
>     </body>
> Now following are the things I try on my searchEmployee.jsp
>      
> searchEmployee.jsp - This works
>     <%@ taglib prefix="tiles" uri="http://tiles.apache.org/tags-tiles"%>
>     <%@ taglib prefix="s" uri="/struts-tags" %>
>      
>     <tiles:insertDefinition name="status.index"/>
> searchEmployee.jsp - This also works
>     <%@ taglib prefix="tiles" uri="http://tiles.apache.org/tags-tiles"%>
>     <%@ taglib prefix="s" uri="/struts-tags" %>
>      
>     <s:form action="listEmployees">
>     	<tiles:getAsString name="pagetitle"/>	
>     </s:form>
> searchEmployee.jsp - This does  work (only if I use tiles:insertDefinition below s:form)
>     <%@ taglib prefix="tiles" uri="http://tiles.apache.org/tags-tiles"%>
>     <%@ taglib prefix="s" uri="/struts-tags" %>
>      
>     <s:form action="listEmployees">		    	
>     </s:form>
> <tiles:insertDefinition name="status.index"/>
> searchEmployee.jsp - This does NOT work (if I use tiles:insertDefinition above or within s:form things don't work)
>     <%@ taglib prefix="tiles" uri="http://tiles.apache.org/tags-tiles"%>
>     <%@ taglib prefix="s" uri="/struts-tags" %>
>      
>     <s:form action="listEmployees">		
>     	<tiles:insertDefinition name="status.index"/>
>     </s:form>
> I get a long exception stack trace which basically says nullptrexception.
> I've done the same thing using tiles1.x and it has always worked.
> Tks

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.