Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我制作了一个jsp页面并在其中使用了以下语句:
<% if(cm.getSessionData("User")!=null && cm.getSessionData("User").toString().equalsIgnoreCase("U")) { %>
其中 cm 是 CacheManager 的对象。
我只是想知道这个jsp语句是否可以使用JSTL变得更好。如果是,我该怎么做。
尝试这个:
<c:if test="${not empty cm.sessionData and fn:toLowerCase(cm.sessionData)=='u'}"> ... </c:if>