Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

package javax.el does not exist

Tags:

java

el

i'm using jre6/eclipse and importing javax.el.* the error

package javax.el does not exist [javac] import javax.el.*;

comes up. isn't this supposed to be part of java? can anyone tell me why this might be. thanks m

like image 947
volvox Avatar asked Jan 28 '10 22:01

volvox


1 Answers

EL (the Unified Expression Language) is part of the Java EE spec. You can find this library as part of any Java EE server or JSP container. Implementations are also available separately from Glassfish, Apache or JUEL.

like image 174
McDowell Avatar answered Oct 22 '22 21:10

McDowell