I have a java class like this :
class Constans {
public static final String FIELD = "example";
}
model.addAttribute(Constants.FIELD, 11);
Now on the jsp page I just want to use like this to access :
<c:out value="${requestScope.Constants.FIELD}"/>
How should I do?