Spring MVC 4.0.4.RELEASE で Thymeleaf 2.1.2.RELEASE を使用しています
新しい注文明細行を注文に追加するために使用する動的フォームがあります。
私が直面している問題は、行を追加してコンテンツが再レンダリングされるたびに、前の各行の価格列の通貨記号の前に余分な記号が追加されることです。
したがって、3行を追加すると、
- £22.00
- €22.00
- £22.00
価格フィールドは @NumberFormat(style = NumberFormat.Style.CURRENCY) の BigDecimal であるため、Spring は変換を処理する必要があります。
<div>
<label th:text="#{order.lines}">Order Lines</label>
<table id="addTable" dt:table="true" dt:sort="false" dt:paginate="false" dt:info="false" dt:lengthchange="false">
<thead>
<tr>
<th th:text="#{order.lines.head.linenum}">line</th>
<th th:text="#{order.lines.head.product}">Product</th>
<th th:text="#{order.lines.head.description}">Description</th>
<th th:text="#{order.lines.head.quantity}">Quantity</th>
<th th:text="#{order.lines.head.price}">Price</th>
<th>
<button type="submit" name="addLine" th:text="#{order.line.add}">Add line</button>
</th>
</tr>
</thead>
<tbody>
<tr th:each="line,lineStat : *{lines}">
<td th:text="${lineStat.count}">1</td>
<td>
<input type="text" th:field="*{lines[__${lineStat.index}__].productIdentifier}"
th:errorclass="fieldError"/>
</td>
<td>
<input type="text" th:field="*{lines[__${lineStat.index}__].description}"
th:errorclass="fieldError"/>
</td>
<td>
<input type="text" th:field="*{lines[__${lineStat.index}__].quantity}"
th:errorclass="fieldError"/>
</td>
<td>
<input type="text" th:field="*{{lines[__${lineStat.index}__].price}}"
th:errorclass="fieldError"/>
</td>
<td>
<button type="submit" name="removeLine" th:value="${lineStat.index}"
th:text="#{order.line.remove}">Remove line
</button>
</td>
</tr>
</tbody>
</table>
</div>
これは、クラスによってサポートされます
public class OrderLine implements Serializable {
@NotEmpty
private String description;
@NotNull
@NumberFormat(style = NumberFormat.Style.CURRENCY)
private BigDecimal price;
@NotEmpty
private String productIdentifier;
@NotNull
@Min(value = 1)
private Integer quantity;
そして、私のコントローラーで
@RequestMapping(value="/customer/orders", params={"addLine"})
public String addLine(final Order order, final BindingResult bindingResult) {
order.getLines().add(new OrderLine());
return "customer/orders";
}
HTMLページにはすでに含まれています
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
文字エンコーディング サーブレット フィルタは次のように設定されます。
@Override
protected Filter[] getServletFilters() {
CharacterEncodingFilter characterEncodingFilter = new CharacterEncodingFilter();
characterEncodingFilter.setEncoding("UTF-8");
characterEncodingFilter.setForceEncoding(true);
return new Filter[] {characterEncodingFilter};
}
これに加えて、Fiddler を使用すると、tandelion datatables ajax リクエストへの応答ヘッダーが誤って ISO-88591 としてエンコードされていることがわかります。私はdatatables-thymeleaf 0.93とdatatables 1.9.4を使用しています
thymeleaf エンコーディング、Spring サーブレット フィルタ、および html メタ タグを ISO-88591 に設定した場合の実験から、通貨記号が正しくレンダリングされて表示されますが、これを UTF-8 で動作させたいと考えています
最終的に、@Christian Nilsson が提供するこの投稿CharacterEncodingFilter do not work together with Spring Security 3.2.0 で答えを見つけました。基本的に、通常の getServletFilters ではなく、onStartup メソッドを使用して、文字エンコーディング フィルターを強制的に登録する必要がありました。