码迷,mamicode.com
首页 > Web开发 > 详细

org.apache.jasper.JasperException: /index.jsp (line: 24, column: 26) attribute for %>" is not proper

时间:2015-02-28 21:40:18      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:el表达式   jsp   forward   include   表达式   

JSP页面,本来想使用标签进行请求跳转的,然后就报了这么一个错误,原来这个里面还不能写表达式,之前一直以为可以的。当然也可以使用另外一个标签.

<body>
    <jsp:forward page="<%=basePath %>msgServlet?action=getAllList"></jsp:forward>
</body>

技术分享

之后改成这样使用EL表达式就OK了。

<body>
    <jsp:forward page="${basePath }msgServlet?action=getAllList"></jsp:forward>
  </body>

技术分享

org.apache.jasper.JasperException: /index.jsp (line: 24, column: 26) attribute for %>" is not proper

标签:el表达式   jsp   forward   include   表达式   

原文地址:http://blog.csdn.net/hu1991die/article/details/43989705

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