Can you post your config file? What does your view resolver look like?
Type: Posts; User: blong824; Keyword(s):
Can you post your config file? What does your view resolver look like?
Ok I created a the following class:
public class CaseInsensitivePathMatcher extends AntPathMatcher {
@Override
public boolean match(String pattern, String string) {
String test =...
I am using Sping 3.0 and I am trying to make it so my controller will treat paths like /test/SomeVar/a the same as /Test/somevar/a.
I found an older post in here...
I have a similiar form doing the same thing.
It is working.
The only difference between my code and yours is on my form instead of using
<spring:bind>
I put the path directly in the...
Thanks for the reply.
I dont mind doing a form submit when the state is changed.
I was mainly wondering if there was a Spring 3.x way to create a dynamic model then bind it to a dynamic...
Hi,
I am trying to find an example or figure out what the correct way to implement the following dynamic form should work.
I have a simple form where I have a select box with a list of states. ...