The Expression Language (EL) simplifies the accessibility of data stored in the Java Bean component, and other objects like request, session, application etc.
즉, EL은 Java Bean object의 data 접근을 간단하게 해준다.
syntax : ${ expression }
member라고 하는 자바빈을 만들고 나서 EL을 사용하여 자바빈에 접근할 때에는
${member.name}
또한 EL에는 만들어놓은 내장 객체가 존재한다.
Welcome, ${ param.name }