I wish to check and highlight if the date is going to expire in 1 week or 1 month... using jstl in jsp. Date between today and + 1week
Date value in session attribute : '09-03-2020'
<fmt:formatDate value="${coMaster.payDate}" pattern="dd-mm-yyyy" var="payDate" />
<c:choose>
<c:when test="${payDate ge thisweek}">
<c:set var="coStyle" value="red"/>
</c:when>
<c:otherwise>
<c:set var="coStyle" value="green"/>
</c:otherwise>
</c:choose>
<display:column title="Pay Date" property="payDate" sortable="true" class="${coStyle}" />