JSF 2 - 如何使用JSF EL从web.xml获取context-param的值?

12 浏览
0 Comments

JSF 2 - 如何使用JSF EL从web.xml获取context-param的值?

我想在web.xml文件中声明一些常量值,供我的JSF 2 web应用程序使用,如下所示:


    
        myconstantkey
        some string value
    

从后端Bean中获取这些值非常简单:

FacesContext ctx = FacesContext.getCurrentInstance();
String myConstantValue =
    ctx.getExternalContext().getInitParameter("myconstantkey");

如何在Facelets页面中使用JSF EL获取相同的值?

0