| Author |
JSTL ${} not evaluating
|
Dan Cosio
Greenhorn
Joined: Jul 05, 2012
Posts: 2
|
|
Im migrating to from jboss 4 to tomcat7. I've also upgraded to struts 2.3.4
My issue is <c:out value="${myValue}"/> isn't returning a value any longer.. myValue is a getter on a struts2 action.. If I set the value in the action using request.setAttribute(...) I can get the value with <c:out/>. This seem to only be an issue with the struts 2 action properties..
Any help would be greatly appreciated..
|
 |
Dan Cosio
Greenhorn
Joined: Jul 05, 2012
Posts: 2
|
|
I caused my own problem. Im also using spring security which is also new in my app.. I had originally set up my filtedispatcher
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>REQUEST</dispatcher>
<dispatcher>FORWARD</dispatcher>
</filter-mapping>
and I just removed the REQUEST/FORWARD parts. I think these kept the intercepters from executing...
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56179
|
|
Thanks for posting back with your findings!
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: JSTL ${} not evaluating
|
|
|