我已经测试了你的代码:这令人难以置信,但我无法重现你的问题。我已经下载了最新版本的spring(3.0.5),这是我的控制器:
package test;
import org.apache.commons.lang.StringUtils;
import org.apache.log4j.Logger;
import org.springframework.stereotype.Controller;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
@RequestMapping("/test/**")
public class MyController {
private static final Logger logger = Logger.getLogger(MyController.class);
@RequestMapping(value = "/test/params", method = RequestMethod.GET)
public void test(SearchRequestParams requestParams, BindingResult result) {
logger.debug("fq = " + StringUtils.join(requestParams.getFq(), "|"));
}
}
这是我的SearchRequestParams类:
package test;
public class SearchRequestParams {
private String[] fq;
public String[] getFq() {
return fq;
}
public void setFq(String[] fq) {
this.fq = fq;
}
}
这是我的简单弹簧配置:
<bean id="urlMapping" class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping" />
<bean class="test.MyController" />
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-INF/jsp/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
我已经在tomcat 7.0.8中测试了我的代码;当我键入时,我能够在我的日志文件中读取此行:.我的代码和你的代码有什么区别?我做错了什么吗?我想帮助你,所以如果你有任何疑问,或者如果我能为你做一些其他测试,那将是一种乐趣。http://localhost:8080/testweb/test/params.htm?fq=foo,bar
DEBUG fq = foo,bar
更新/解决方案
使用您的代码,我再现了该问题;您在调度程序 servlet 配置中有标记,因此您以静默方式使用默认的转换服务,即 的实例,其中包含一个默认的转换器 from to,该转换器使用逗号作为分隔符。您必须使用包含您自己的转换器从 到 的不同转换服务 Bean。你应该使用不同的分隔符,我选择使用“;”,因为它是查询字符串中常用的分隔符(“?first=1;second=2;third=3”):<mvc:annotation-driven />
FormattingConversionService
String
String[]
String
String[]
import org.springframework.core.convert.converter.Converter;
import org.springframework.util.StringUtils;
public class CustomStringToArrayConverter implements Converter<String, String[]>{
@Override
public String[] convert(String source) {
return StringUtils.delimitedListToStringArray(source, ";");
}
}
然后,您必须在配置中指定此转换服务 Bean:
<mvc:annotation-driven conversion-service="conversionService" />
<bean id="conversionService" class="org.springframework.context.support.ConversionServiceFactoryBean">
<property name="converters">
<list>
<bean class="au.org.ala.testspringbinding.CustomStringToArrayConverter" />
</list>
</property>
</bean>
问题已修复,现在您应该检查是否有任何副作用。我希望您不需要在您的应用程序中将原始转换从 to(使用逗号作为分隔符)。;-)String
String[]