私はSpringブートアプリケーションでタイプコンバータを使用しようとしていますが、それを動作させることはできません。 Githubにいくつかのコードを書いて、私がしようとしていることを正確に見ることができます。これはSpring 1.5.1とThymeleaf 3.0.3です。 https://github.com/matthewsommer/spring-thymeleaf-simple-converterSpring + Thymeleafタイプのコンバータ
基本的にこのコードは、コメントオブジェクトに人を追加しようとしています。人物オブジェクトは投稿されたときにnullであり、理由を理解できません。
奇妙なことは、人のIDが値属性に追加されていないが、th:field = "* {body}"が削除されていることです。私のHTMLがある
... https://github.com/thymeleaf/thymeleaf/issues/495しかし、私は現在BindingResultを追加しようとしているし、それが働いていない:<body>
<div th:if="${personObject != null}" th:text="${personObject.name}"></div>
<form th:action="@{/}" th:object="${comment}" method="post">
<input type="hidden" th:if="${personObject != null}" th:value="${personObject.id}" th:field="*{person}" />
<textarea id="comment" placeholder="Comment..." th:field="*{body}"></textarea>
<button id="comment_submit" type="submit">Comment</button>
</form>
<div th:text="${comment.body}"></div>
</body>
マイコントローラ:
@Controller
public class HomeWebController {
@RequestMapping(value = "/", method = RequestMethod.GET)
public String getHome(final HttpServletRequest request, final Map<String, Object> model, @ModelAttribute(value = "comment") Comment comment) {
model.put("personObject", new Person(1, "John Smith"));
return "Home";
}
@RequestMapping(value = "/", method = RequestMethod.POST)
public String postHome(final HttpServletRequest request, final Map<String, Object> model, @ModelAttribute(value = "comment") Comment comment) {
model.put("commentBody", comment.getBody());
model.put("person", comment.getPerson());
return "Home";
}
}
私はそれがこれに関係していると思います
変換器:
@Component
public class StringToPersonConverter implements Converter<String, Person> {
@Autowired
public StringToPersonConverter() { }
@Override
public Person convert(String id) {
if(id == "1") {
Person person = new Person(1, "John Smith");
return person;
}
return null;
}
}
コードを試しましたか? – cralfaro