我正在使用Spring MVC作为我的Web应用程序,但我真的不知道如何在Spring中使用Datepicker,因为Spring的方式是将数据从spring的标签映射到相应Object的变量{{1在我的页面中包含日期组件tof hat form tablig spring不支持此组件。
请帮助我!
而且,这有一个问题。遵循: 选择或输入值并提交后,但该值不是通过hibernate mapp进入数据库
答案 0 :(得分:2)
如果你使用该字段设置日期对象的路径并使用jquery(或其他一些javascript库)来生成一个datepicker(就像这个http://jqueryui.com/datepicker/)。并初始化你的日期选择器:
<script>
$(function() {
$( "#date" ).datepicker(); // give your date field an id or a date css class
});
</script>