lundi 3 août 2015

EL aren't interpreted in JSP file

Why doesn't work EL in this JSP file?

el.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://ift.tt/kTyqzh">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
    ${5+3 }
    ${5+hola }
    <s:url action="registerInput" var="registerInputLink" />
    ${registerInputLink}
</body>
</html>

and what I see in the web page is:

${5+3 } ${5+hola }  ${registerInputLink} 

Aucun commentaire:

Enregistrer un commentaire