程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> JSP中使用EL表達式 ieELIgnoed問題

JSP中使用EL表達式 ieELIgnoed問題

編輯:關於JSP

在JSP中使用EL表達式時,需要標識 isELIgnored="false",不然EL表達式是作為普通的字符串來編譯的,而在頁面上也不會顯示出正確的值。         [html]   <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false"%>   <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>      <c:out value="${param.para1}" default="hello world">     在apache-tomcat-6.0.35-src中可以看到這一點:   [java]  protected String[] generateJava() throws Exception {              String[] smapStr = null;              long t1, t2, t3, t4;              t1 = t2 = t3 = t4 = 0;              if (log.isDebugEnabled()) {               t1 = System.currentTimeMillis();           }              // Setup page info area           pageInfo = new PageInfo(new BeanRepository(ctxt.getClassLoader(),                   errDispatcher), ctxt.getJspFile());              JspConfig jspConfig = options.getJspConfig();           JspConfig.JspProperty jspProperty = jspConfig.findJspProperty(ctxt                   .getJspFile());              /*           * If the current uri is matched by a pattern specified in a           * jsp-property-group in web.xml, initialize pageInfo with those           * properties.           */           if (jspProperty.isELIgnored() != null) {               pageInfo.setELIgnored(JspUtil.booleanValue(jspProperty                       .isELIgnored()));           }      

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved