I'm writing a Spring Boot-based application. I have a resource method that takes a @BeanParam that internally has a @QueryParam with a field of type Set<String>. When I submit the request with multiple values, say "foo", "bar", and "baz", the set only contains one value "foo,bar,baz". I know I've seen this before and there's even a setting to "fix" it (org.apache.cxf.http.header.split). My question is, how do I apply that setting when using Spring Boot and the autoconfiguration support?
Thanks, James
