@NumberFormat注释不起作用

时间:2012-12-30 09:30:10

标签: spring spring-mvc

尝试在JSP中显示货币符号但我看不到它。我的研究和我只是不知道我应该添加什么以使其正常工作。这就是我所拥有的。

<mvc:annotation-driven />

控制器

@NumberFormat(style = Style.CURRENCY)
private Double value = 50.00;

@ModelAttribute("value")
@NumberFormat(style = Style.CURRENCY)
public Double getValue() {
    return value;
}

@RequestMapping(method = RequestMethod.GET)
public ModelAndView loadForm(@ModelAttribute("user") User user) {
    ModelAndView instance 
    modelAndView.addObject("value", 100.00);
    return modelAndView;
}

JSP

<spring:bind path="value">
     <input type="text" name="${value}" value="${value}"/>
</spring:bind>

<spring:bind path="value">
     ${value}
</spring:bind>

输出

 <input type="text" name="value" value="100.0"/>

 100.0

1 个答案:

答案 0 :(得分:2)

尝试使用字符串文字value作为name属性,而不是使用EL

解析它
<spring:bind path="value">
     <input type="text" name="value" value="${value}"/>
</spring:bind>

此外,将字段值移动到新对象中。目前我不相信代码使用控制器中的字段或控制器中的getter。

public class MyForm(){

    @NumberFormat(style = Style.CURRENCY)
    private Double value = 50.00;

    @ModelAttribute("value")
    @NumberFormat(style = Style.CURRENCY)
    public Double getValue() {
        return value;
    }
}

然后将对象添加到控制器中的模型中:

@RequestMapping(method = RequestMethod.GET)
public ModelAndView loadForm(@ModelAttribute("user") User user) {
    ModelAndView instance 
    modelAndView.addObject("myForm", new MyForm());
    return modelAndView;
}

然后通过jsp访问:

<spring:bind path="myForm.value">
     <input type="text" name="${status.expression}" value="${status.value}"/>
</spring:bind>

<spring:bind path="myForm.value">
     ${status.value}
</spring:bind>

目前代码的主要问题是它没有使用字段/访问器,它只是在模型中放置一个值,它不使用任何带注释的字段/方法。

参考文献: http://www.captaindebug.com/2011/08/using-spring-3-numberformat-annotation.html#.UOAO_3fghvA

How is the Spring MVC spring:bind tag working and what are the meanings of status.expression and status.value?