spring-mvcを使用してthymeleafテンプレートをth:pattern
次のように日付入力フォーム フィールドに使用しようとしていますが、運がありません。他の誰かが同様のことを経験し、洞察や代替手段を持っていますか?
1を試しました。パターンのハードコーディング
<input type="text" th:pattern="MM/dd/yyyy" th:field="*{classDate}"/>
受信エラー:
Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "MM/dd/yyyy"
そして2。使用するテンプレートの Java コードでパターンを設定する
<input type="date" th:pattern="${classdate_format}" th:field="*{classDate}"/>
受信エラー:
Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateProcessingException: Error during execution of processor 'org.thymeleaf.spring3.processor.attr.SpringInputGeneralFieldAttrProcessor'