Passing init params to Manage bean

后端 未结 2 1208
囚心锁ツ
囚心锁ツ 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:31

    You can get init-params defined in web.xml by:

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

提交回复
热议问题