我正在尝试获取init parameter
文件中定义的web.xml
的值。但我得到Http Status 500
例外。
在JSP文件中获取init parameter
的代码:
init param: ${pageContext.servletContext.initParameter.mob}
的web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<welcome-file-list>
<welcome-file>one/index.html</welcome-file>
</welcome-file-list>
<context-param>
<param-name>mob</param-name>
<param-value>nokia</param-value>
</context-param>
</web-app>
当我尝试使用jsp语法在没有EL的情况下获取init参数时没有问题。但是EL导致错误。任何人都可以告诉我如何使用EL
来获得这个答案 0 :(得分:2)
尝试使用此表达式。
${initParam['mob']}
或者
${pageContext.servletContext.initParameter['mob']}