如何防止参数绑定在Spring 3.0.5中解释逗号?

2022-08-31 16:28:45

请考虑以下控制器方法:

@RequestMapping(value = "/test", method = RequestMethod.GET)
public void test(@RequestParam(value = "fq", required = false) String[] filterQuery) {
    logger.debug(fq = " + StringUtils.join(filterQuery, "|"));
}

以下是不同组合的输出:fq

  1. /test?fq=foo结果fq = foo
  2. /test?fq=foo&fq=bar结果fq = foo|bar
  3. /test?fq=foo,bar结果fq = foo|bar
  4. /test?fq=foo,bar&fq=bash结果fq = foo,bar|bash
  5. /test?fq=foo,bar&fq=结果fq = foo,bar|

示例 3 就是问题所在。我希望(想要/需要)它输出。fq = foo,bar

我尝试过用逗号转义并使用,但niether工作。\%3C

如果我看一下对象的版本:HttpServletRequest

String[] fqs = request.getParameterValues("fq");
logger.debug(fqs = " + StringUtils.join(fqs, "|"));

它打印预期的输出:。所以“问题”在于Spring数据绑定。fqs = foo,bar

我可以绕过Spring的绑定和使用,但我真的不想这样做,因为我在我的实际代码中使用了支持bean(同样的事情正在发生),并且不希望重新实现绑定功能。我希望有人能提供一种简单的方法,通过逃避或其他机制来防止这种行为。HttpServletRequest

断续器

更新:我在Twitter上发布了这个Q,并得到了回复,说预期的输出出现在Spring 3.0.4.RELEASE中。我现在已经确认这是这种情况,因此是一个临时修复。我会继续将其记录为Spring JIRA系统上的错误。如果有人可以提供解决方法或修复3.0.5,我会接受他们的答案。


答案 1

我已经测试了你的代码:这令人难以置信,但我无法重现你的问题。我已经下载了最新版本的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,barDEBUG fq = foo,bar

更新/解决方案
使用您的代码,我再现了该问题;您在调度程序 servlet 配置中有标记,因此您以静默方式使用默认的转换服务,即 的实例,其中包含一个默认的转换器 from to,该转换器使用逗号作为分隔符。您必须使用包含您自己的转换器从 到 的不同转换服务 Bean。你应该使用不同的分隔符,我选择使用“;”,因为它是查询字符串中常用的分隔符(“?first=1;second=2;third=3”):<mvc:annotation-driven />FormattingConversionServiceStringString[]StringString[]

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(使用逗号作为分隔符)。;-)StringString[]


答案 2

我为我找到了最优雅和最短的方式 - 添加到:@InitBinder@Controller

@InitBinder
public void initBinder(WebDataBinder binder) {
    binder.registerCustomEditor(String[].class, new StringArrayPropertyEditor(null));
}

它将使用Spring类org.springframework.beans.propertyeditors.StringArrayPropertyEditor将String转换为String[],而不使用分隔符(param)。如果同一项目中的某人将使用新的默认转换方式,则可以。null


推荐