我正在尝试使用tile集成来学习Struts2 f / w但是在实现时我在putAttributeTag中获得了NPE。
点击登录后我需要转到主页,但在打开主页时出现异常。
以下是一些相关的代码。
struts.xml中
<package name="default" extends="struts-default" namespace="/">
<result-types>
<result-type name="dispatcher" class="org.apache.struts2.dispatcher.ServletDispatcherResult" default="true"/>
<result-type name="tiles" class="org.apache.struts2.views.tiles.TilesResult"></result-type>
</result-types>
<action name="signin" class="actions.SigninAction" method="execute">
<result name="success" type="tiles">home</result>
</action>
</package>
tiles.xml
<tiles-definitions>
<definition name="baseLayout" template="/baseLayout.jsp">
<put-attribute name="title" value=""></put-attribute>
<put-attribute name="header" value="/header.jsp"></put-attribute>
<put-attribute name="leftmenu" value="/leftmenu.jsp"></put-attribute>
<put-attribute name="footer" value="/footer.jsp"></put-attribute>
<put-attribute name="rightmenu" value="/rightmenu.jsp"></put-attribute>
<put-attribute name="content" value=""></put-attribute>
</definition>
<definition name="home" extends="baseLayout">
<put-attribute name="content" value="/home.jsp"></put-attribute>
<put-attribute name="title" value="Home"></put-attribute>
</definition>
</tiles-definitions>
baselayout(模板的其他部分的其他div也被定义但我没有在这里包含它们,如果需要它们我会更新baselayout)
<title><tiles:insertAttribute name="title" ignore="true"></tiles:insertAttribute>
</title>
</head>
<body>
<div id="leftmenu" class=".leftmenu">
<b>Add New</b><br> Update<br> Search<br> Remove
</div>
<div id="content" class=".content">
<tiles:putAttribute name="content"></tiles:putAttribute>
</div>
home.jsp
仅包含简单的一行文字。
actions.SigninAction
仅返回success
(尚未合并输入验证,我已检查此Action返回成功)。
日志
消息:
ServletException including path '/baseLayout.jsp'.
ServletException including path '/baseLayout.jsp'.
堆栈跟踪
org.apache.tiles.TilesException: ServletException including path '/baseLayout.jsp'.
org.apache.tiles.impl.BasicTilesContainer.render(BasicTilesContainer.java:614)
org.apache.tiles.impl.BasicTilesContainer.render(BasicTilesContainer.java:246)
org.apache.struts2.views.tiles.TilesResult.doExecute(TilesResult.java:105)
和
org.apache.tiles.util.TilesIOException: ServletException including path '/baseLayout.jsp'.
org.apache.tiles.servlet.context.ServletTilesRequestContext.wrapServletException(ServletTilesRequestContext.java:298)
org.apache.tiles.servlet.context.ServletTilesRequestContext.forward(ServletTilesRequestContext.java:200)
org.apache.tiles.servlet.context.ServletTilesRequestContext.dispatch(ServletTilesRequestContext.java:179)
org.apache.tiles.context.TilesRequestContextWrapper.dispatch(TilesRequestContextWrapper.java:72)
和
java.lang.NullPointerException
org.apache.tiles.jsp.taglib.PutAttributeTag.execute(PutAttributeTag.java:204)
org.apache.tiles.jsp.taglib.RoleSecurityTagSupport.doEndTag(RoleSecurityTagSupport.java:75)
org.apache.jsp.baseLayout_jsp._jspx_meth_tiles_005fputAttribute_005f0(baseLayout_jsp.java:188)
org.apache.jsp.baseLayout_jsp._jspService(baseLayout_jsp.java:129)
如果你指出我的错误会很好。
答案 0 :(得分:1)
NPE的原因是在baseLayout
中,我使用的是putAttribute
代码,而不是insertAttribute
。
<div id="content" class=".content">
<tiles:putAttribute name="content"></tiles:putAttribute>
</div>
如果对putAttribute
进行评估,则value
参数丢失。因此,导致投掷NPE。
修正:
使用insertAttribute
标记,因为我们将获取值并将其插入baselayout
。
另外我经过this blog后改变的其他一些事情如下:
.tiles
用作其他视图技术中图块定义的标记。/
,并相应地调整了struts.xml
。