BAEL-151 - Adding EL dependency
This commit is contained in:
parent
eb244dd0e6
commit
3b9e4c7a56
|
@ -25,6 +25,12 @@
|
||||||
<artifactId>jsf-impl</artifactId>
|
<artifactId>jsf-impl</artifactId>
|
||||||
<version>${com.sun.faces.version}</version>
|
<version>${com.sun.faces.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.el</groupId>
|
||||||
|
<artifactId>el-api</artifactId>
|
||||||
|
<version>${javax.el.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
<!-- Spring -->
|
<!-- Spring -->
|
||||||
|
|
||||||
|
@ -114,6 +120,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>
|
||||||
|
|
||||||
<!-- logging -->
|
<!-- logging -->
|
||||||
<org.slf4j.version>1.7.13</org.slf4j.version>
|
<org.slf4j.version>1.7.13</org.slf4j.version>
|
||||||
|
|
|
@ -1,8 +1,4 @@
|
||||||
/*
|
package com.baeldung.springintegration.controllers;
|
||||||
* To change this template, choose Tools | Templates
|
|
||||||
* and open the template in the editor.
|
|
||||||
*/
|
|
||||||
package com.baeldung.el.controllers;
|
|
||||||
|
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
import javax.annotation.PostConstruct;
|
import javax.annotation.PostConstruct;
|
||||||
|
@ -13,10 +9,6 @@ import javax.faces.bean.ViewScoped;
|
||||||
import javax.faces.component.html.HtmlInputText;
|
import javax.faces.component.html.HtmlInputText;
|
||||||
import javax.faces.context.FacesContext;
|
import javax.faces.context.FacesContext;
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @author Tayo
|
|
||||||
*/
|
|
||||||
@ManagedBean(name = "ELBean")
|
@ManagedBean(name = "ELBean")
|
||||||
@ViewScoped
|
@ViewScoped
|
||||||
public class ELSampleBean {
|
public class ELSampleBean {
|
Loading…
Reference in New Issue