Passing init params to Manage bean

后端 未结 2 1235
囚心锁ツ
囚心锁ツ 2021-01-16 13:15

I have a authorization managed bean to fetch restriction rules to be applied to the tags within every jsf of the application. The managed bean requires to know the name of t

2条回答
  •  庸人自扰
    2021-01-16 13:52

    Declare it in web.xml as follows:

    
        paramName
        PARAM_VALUE
    
    

    Access it in ManagedBean as follows:

    FacesContext.getCurrentInstance()
                    .getExternalContext().getInitParameter("paramName")
    

    Hope this helps to solve your problem.

提交回复
热议问题