Such code:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <meta http-equiv="CONTENT-TYPE" content="text/html" charset="UTF-8"> <title>List</title> </head> <body> <c:forEach items="${zayavkas}" var="zayavka"> ${zayavka.id} ${zayavka.fullName} </c:forEach> </body> </html> When loading the page instead of the values of variables are displayed: $ {zayavka.id} $ {zayavka.fullName}. Debugger passed the code in zayavkas all the records come. How to make so that values were deduced?