码迷,mamicode.com
首页 > 其他好文 > 详细

According to TLD or attribute directive in tag file, attribute value does not accept any expressions

时间:2017-08-12 00:33:29      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:efault   sep   getc   accept   4.0   base   tco   sch   text   

在运用标准标签库和EL表达式写JSP页面的时候,有时候会报500错误

 

 

执行某jsp页面时,弹出如标题所示异常,jsp代码如下:

<%@ page language="java" contentType="text/html;charset=gbk" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %> 
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
  </head>
  
  <body>
    This is the result:
    <c:out value="${userInfo}" default="没有结果"/>
  </body>
</html>

异常的原因是不能识别“${userInfo}”,解决办法有两种:
一、在page指令里,加入isELIgnored="true"属性,即
<%@ page language="java" contentType="text/html;charset=gbk"  isELIgnored="true" %>
二、把<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>变为:
<%@ taglib prefix="c" uri=http://java.sun.com/jstl/core_rt  %>
经过改动之后,jsp页面能正常执行了。

According to TLD or attribute directive in tag file, attribute value does not accept any expressions

标签:efault   sep   getc   accept   4.0   base   tco   sch   text   

原文地址:http://www.cnblogs.com/yuanlaihenkuang/p/7348450.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!