EL expressions not evaluated in JSP

前端 未结 5 1441
忘掉有多难
忘掉有多难 2020-11-21 22:20

There\'s a small problem with my servlets/jsp web application. I\'m trying to use jstl in jsp page. When I use any tag for example:



        
5条回答
  •  北荒
    北荒 (楼主)
    2020-11-21 23:12

    My JSP page also couldn't recognize the . Always executed the false condition i.e . This is what was happening.

    This was an inner JSP page i.e

    
    

    The inner JSP was loading first and did not have the below tag libraries. They were placed on the outer JSP. Adding them to the inner worked for me.

    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@ taglib uri="http://www.springframework.org/tags" prefix="spring" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
    <%@ taglib uri="http://www.springframework.org/tags/form" prefix="form" %>
    

提交回复
热议问题