jsf 2.2 - JSF 2.2.6 ValueExpression API -
where can find valueexpression api in jsf 2, javax impl? working in pf project, value expresoion type depreciated eclipse shows this;
javax.faces.el.valueexpression depreciated.
needed in line;
valueexpression ve = getvalueexpression(name);
where javax.faces.el.valueexpression
coming in project? unified el not part of jsf specification (i think introduced along jsf 1.2 part of jsp spec).
the correct full qualified name of class should javax.el.valueexpression
. class available in servlet container , unless explicitly use in source code don't have add project. if add it, should make sure version matches servlet version of container deploy (and not deploy jar unless know doing):
- java ee 5: el api 1.0
- java ee 6: el api 2.2
- java ee 7: el api 3.0
Comments
Post a Comment