BAEL-197 - EL3 dependency added
This commit is contained in:
parent
5b06a350ad
commit
a54265fff0
|
@ -27,7 +27,7 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javax.el</groupId>
|
<groupId>javax.el</groupId>
|
||||||
<artifactId>el-api</artifactId>
|
<artifactId>javax.el-api</artifactId>
|
||||||
<version>${javax.el.version}</version>
|
<version>${javax.el.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
@ -127,7 +127,7 @@
|
||||||
|
|
||||||
<!-- JSF -->
|
<!-- JSF -->
|
||||||
<com.sun.faces.version>2.1.7</com.sun.faces.version>
|
<com.sun.faces.version>2.1.7</com.sun.faces.version>
|
||||||
<javax.el.version>2.2</javax.el.version>
|
<javax.el.version>3.0.0</javax.el.version>
|
||||||
|
|
||||||
<!-- logging -->
|
<!-- logging -->
|
||||||
<org.slf4j.version>1.7.13</org.slf4j.version>
|
<org.slf4j.version>1.7.13</org.slf4j.version>
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
package com.baeldung.springintegration.controllers;
|
package com.baeldung.springintegration.controllers;
|
||||||
|
|
||||||
import java.util.Random;
|
|
||||||
import javax.annotation.PostConstruct;
|
import javax.annotation.PostConstruct;
|
||||||
|
import javax.el.LambdaExpression;
|
||||||
import javax.faces.application.Application;
|
import javax.faces.application.Application;
|
||||||
import javax.faces.application.FacesMessage;
|
import javax.faces.application.FacesMessage;
|
||||||
import javax.faces.bean.ManagedBean;
|
import javax.faces.bean.ManagedBean;
|
||||||
import javax.faces.bean.ViewScoped;
|
import javax.faces.bean.ViewScoped;
|
||||||
import javax.faces.component.html.HtmlInputText;
|
|
||||||
import javax.faces.context.FacesContext;
|
import javax.faces.context.FacesContext;
|
||||||
|
import java.util.Random;
|
||||||
|
|
||||||
@ManagedBean(name = "ELBean")
|
@ManagedBean(name = "ELBean")
|
||||||
@ViewScoped
|
@ViewScoped
|
||||||
|
|
Loading…
Reference in New Issue