在逗号MVC中将带逗号的字符串转换为double数字

时间:2014-06-13 03:17:02

标签: java spring spring-mvc servlets spring-data-mongodb

我目前在Dispatcher-Servlet.xml中使用MappingJacksonHttpMessageConverter。在我的应用程序中,当用户输入货币时,逗号本身附加到该值。当该值传递给控制器​​时,它无法将字符串用逗号转换为 double值。抛出削减错误。我正在将此值用于其他计算,因此我无法在模态类中将其类型更改为字符串。

有没有办法可以使用 MappingJacksonHttpMessageConverter 让控制器忽略逗号并读取值。

这是我的servlet.xml文件的一部分。

    <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
    <property name="order" value="1" />
    <property name="messageConverters">
        <list>
            <bean class="org.springframework.http.converter.StringHttpMessageConverter"/>
            <bean class="org.springframework.http.converter.FormHttpMessageConverter"/>
            <bean class="org.springframework.http.converter.ByteArrayHttpMessageConverter" />
            <bean class="org.springframework.http.converter.xml.SourceHttpMessageConverter"/>
            <bean class="org.springframework.http.converter.BufferedImageHttpMessageConverter"/>
            <bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter" />
        </list>
    </property>
</bean>

任何帮助将不胜感激

1 个答案:

答案 0 :(得分:1)

您可以通过实现Converter接口在Spring中创建自定义转换服务来实现此目的。 有关此信息,请参阅http://docs.spring.io/spring/docs/3.2.x/spring-framework-reference/html/validation.htmlhttp://log4aj.blogspot.in/2012/08/spring-converterconversionservice.html