Reputation: 1249
I am having a requirement to add a sentence on a JSP page with a hyperlink, which it'll redirect to a different page, and this sentence needs to be automatically removed after two days from the deployment date.
Example:
<a href="http://www.example.com/football/schedule">Football tournament on 20th Jan 2014</a>
Is there any techniques available in Java to add a schedule job to a particular JSP text? I am using Struts 2 in my application as well.
Upvotes: 1
Views: 108
Reputation: 1
If condition for specified content
<s:if test="new java.util.Date().before(new java.text.SimpleDateFormat("dd/MM/yyyy").parse("20/01/2014"))">
<a href="http://www.example.com/football/schedule">Football tournament on 20th Jan 2014</a>
</s:if>
Upvotes: 0