Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Type API variable-resolver is deprecated after JSF 1.1. Use el-resolver instead

We recently upgraded from WebSphere Portal v6.1 to v7.0 and in the process we now have JSF 1.2 available. Creating a new Portlet project in Rad 8 creates a faces-config.xml with the following entry

<application>
    <state-manager>com.ibm.faces.application.DevelopmentStateManager</state-manager>
    <variable-resolver>com.ibm.faces.portlet.PortletVariableResolver</variable-resolver>
</application>

And then complains: Type API variable-resolver is deprecated after JSF 1.1. Use el-resolver instead.

Unfortunately i could not find an answer on the IBM pages which el-resolver to use.

Edit:

System.out.println("Resolver: " + PortalUtil.getFacesContext().getApplication().getELResolver());

=> Resolver: com.sun.faces.el.FacesCompositeELResolver@696e696e

Adding an entry in faces-config

<el-resolver>com.sun.faces.el.FacesCompositeELResolver</el-resolver>

With or without removing the variable-resolver leads to:

java.lang.IllegalStateException: Application was not properly initialized at startup, could not find Factory: javax.faces.context.FacesContextFactory
    at javax.faces.FactoryFinder.getFactory(FactoryFinder.java:270)
    at javax.faces.webapp.FacesServlet.init(FacesServlet.java:164)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.init(ServletWrapper.java:358)
    ... 89 more

PMR with IBM opened ...

like image 914
Stefan Avatar asked Oct 27 '11 19:10

Stefan


1 Answers

IBMs response to the PMR:

Q - What might be the consequences of ignoring the warning?

Ans - User can still use variable resolver, the functionality will not be affected. [This tag will be maintained for backwards compatibility]

Q - Why does the generated faces-config.xml still use the deprecated method ?

Ans - We are using variable resolver to resolve the portlet variables, which would work well even with JSF 1.2

Q - Will there be or is there an el-resolver for portlets?

Ans - There will be an el-resolver for portlets. It will be provided in JSF portlet bridge 2.0 which will be shipped as an update to WAS. It is currently in the planning stages so I cannot give you a precise version that this will be found in.

like image 124
Stefan Avatar answered Oct 01 '22 14:10

Stefan