Has anybody experienced the problem that EL expressions like ${message} do not get evaluated, but are treated like normal characters, when they are used as a view inside a controller?
example jsp:
I am using Gaijin Studio on Tomcat with the newest Spring release.Code:<%@ taglib uri="/tags/c" prefix="c"%> <html> <body> <div style="color:red">${errorMessage}</div> <form method="post" action="loginSimpleformChooser.do"> <input type="text" name="userName"> <input type="text" name="password"> <input type="submit"> </form> </body> </html>
[/code]


Reply With Quote