Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
521 views
in Technique[技术] by (71.8m points)

jsp - Param tag giving null value

param tag giving null value when i used

System.out.println("Before"+request.getParameter("imeino")); 
<% session.setAttribute("imeino1", request.getParameter("imeino1"));
    System.out.print("BBBBB^^@@"+session.getAttribute("imeino"));
%>
<div style="margin-left: 50px; margin-bottom: 10px;">
</div>
<div class="grid" align="center" style="margin-top: 30px">
<ws:url id="remoteurl" action='userimageGrid' escapeAmp="false"> 
    <ws:param name="imeino" value="66666666666"></ws:param>
</ws:url> 
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Parameters are getting lost when you use redirect or redirectAction result type. To retain request parameters you should use dispatcher result type. This is default result type, and it will be used if you miss type attribute of the result tag, like this

<result>/ThankYou.jsp</result>  

Why param tag giving null value. Because the value is converted by OGNL to integer value before adding it to the URL and it throws NumberFormatException because no such integer can exist. The value exceeds the maximum in Java for integer value. You should use string value in param tag, like this

<s:url var="remoteurl" action='userimageGrid' escapeAmp="false"> 
    <s:param name="imeino" value="'66666666666'"/>
</s:url> 
<s:a href="%{#remoteurl}">Call</s:a>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...