无法使用EL从servlet上下文获取init-parameter

时间:2015-02-10 22:04:35

标签: java jsp servlets el

我正在尝试获取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

来获得这个

1 个答案:

答案 0 :(得分:2)

尝试使用此表达式。

${initParam['mob']} 

或者

${pageContext.servletContext.initParameter['mob']}