Ajuda, por gentileza.
Qual a forma mais indicada na versão 3.4.1 e se estou entendendo corretamente:
web.xml
<context-param>
<param-name>javax.servlet.jsp.jstl.fmt.localizationContext </param-name>
<param-value>messages</param-value>
</context-param>
<context-param>
<param-name>br.com.caelum.vraptor.packages</param-name>
<param-value>br.com.caelum.vraptor.converter.l10n</param-value>
</context-param>
converter
@Convert(Double.class)
public class CustomDoubleConverter extends Converter<Double> {
...
JQuery
@Convert(Double.class)
$("input[name=pedidoCompra.valor_frete]").val($("input[name=pedidoCompra.valor_frete]").replace(",", "."));
...