我需要在 JSP 页面上添加一个带有超链接的句子,它将重定向到另一个页面,并且这句话需要在部署日期两天后自动删除。
示例:
<a href="http://www.example.com/football/schedule">Football tournament on 20th Jan 2014</a>
Java 中是否有任何技术可以将计划作业添加到特定的 JSP 文本?我也在我的应用程序中使用 Struts 2。
如果指定内容的条件
<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>