Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.3.9, 2.3-next-M6, 3.0.2
-
None
Description
When using the "@FacesConfig" annotation, CDI is used to perform EL resolution (see 5.6.3 of the JSF 2.3 Spec) instead of the ImplicitObjectELResolver.
Table 5-11 lists all the objects that should be resolved. It looks like request was missed by accident.
_______
Test Code:
Java:
@FacesConfig(version = Version.JSF_2_3)
@ApplicationScoped
public class FacesConfiguration {}
HTML:
<div> request: #{request} </div>