Getting variable in JSP EL by constant does not work
问题 I use GlassFish 4.1 web profile which as I understand uses EL 3.0. I did everything as was explained here - https://stackoverflow.com/a/3735006/5057736 however my implementation of this solution doesn't work. This is my constant class public class CommonKeys { public static final String TITLE = "SOME_KEY"; } This is how I set attribute: request.setAttribute(CommonKeys.TITLE, "TEST"); This is my jsp: <%@page contentType="text/html" pageEncoding="UTF-8"%> <%@ taglib prefix="c" uri="http://java