org.apache.el.parser.ParseException: Encountered " ":" ": "" at line 1, column 1
详见:http://raising.iteye.com/blog/2215415
跟$符号有关!其实,本意是在页面上直接显示$符号,表示美元符号,而并不想赋予它el表达式的含义,需要对其进行转义,\$
jsp中 #{...} is not allowed in template text的一种详解
详见:http://www.iteye.com/topic/286901
在使用了#{}表达式的jsp文件中,在@page中增加deferredSyntaxAllowedAsLiteral="true",如下所示
<%@ page contentType="text/html; charset=UTF-8" deferredSyntaxAllowedAsLiteral="true"%>