java - Getting a NULL value using JSP use Bean property -


i trying display value of variable in jsp , using tag property. @ end variable populated string literal in jsp displays null. in jsp trying value of resendrequeststatus , put in message , trying display using getproperty shows null. while debugging populate.

private string resendrequeststatus; // getters , setters 

jsp

<jsp:usebean id="test" class="package.myclass"/>  <% string message = test.getresendrequeststatus(); %> <jsp:setproperty property="resendrequeststatus" name="test" value="<%=message %>"/> <jsp:getproperty property="resendrequeststatus" name="test"/> 

thanks....


Comments

Popular posts from this blog

What is happening when Matlab is starting a "parallel pool"? -

angular - DownloadURL return null in below code -

php - Cannot override Laravel Spark authentication with own implementation -