> In 7.0.21 it works:
OK, thank you.
-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org
2011/9/12 :
>> What exactly version on Tomcat 7.0.x? There is a new one every month.
>
> .get(..) works on 7.0.5 but not on 7.0.8
>
There was a lot of important fixes since 7.0.8.
In 7.0.21 it works:
[[[
<%@page import="java.util.*" %>
<% Map states = new HashMap();
states.put(1, "foo");
p
>> ${states.get(state)}
>
> Did it work before, and in what exact versions of Tomcat?
Only on dev with 7.0.5
> I would write that as ${states[state]}
This works.
> What exactly version on Tomcat 7.0.x? There is a new one every month.
.get(..) works on 7.0.5 but not on 7.0.8
-
2011/9/12 :
> Hi,
>
> in a jsp I have an expression like this:
>
> ${states.get(state)}
Did it work before, and in what exact versions of Tomcat?
I would write that as ${states[state]}
>
> On my dev machine everything works fine, on the staging it does not work, I
> get:
>
> java.lang.NoSuchMeth
Hi,
in a jsp I have an expression like this:
${states.get(state)}
On my dev machine everything works fine, on the staging it does not work, I
get:
java.lang.NoSuchMethodException: java.util.HashMap.get(java.lang.Integer)
states is:
Map states = new HashMap();
states.put(1, "foo");
...
Both