无法将类型“java.lang.String”的属性值转换为所需类型“java.util.Date”

Pau*_*hez 5 java mysql spring-mvc fullcalendar

我正在尝试使用 Spring MVC、Java 和 MySql 在我的 web 应用程序中实现完整的日历插件。当我尝试在 jsp 中使用“input type = date”添加日期时,出现此错误:

Field error in object 'event' on field 'endDate': rejected value [2018-03-13]; 
codes [typeMismatch.event.endDate,typeMismatch.endDate,typeMismatch.java.util.Date,typeMismatch];
arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [event.endDate,endDate]; arguments [];
default message [endDate]]; default message [Failed to convert property value of type 'java.lang.String' 
to required type 'java.util.Date' for property 'endDate'; nested exception is org.springframework.core.convert.ConversionFailedException: 
Failed to convert from type java.lang.String to type @org.springframework.format.annotation.DateTimeFormat
java.util.Date for value '2018-03-13'; 
nested exception is java.lang.IllegalArgumentException: Unable to parse '2018-03-13']
Run Code Online (Sandbox Code Playgroud)

在我的控制器类中,我使用 SimpleDateFormat 来格式化我的日期:

@RequestMapping(value = "add", method = RequestMethod.POST)
    public String add(@ModelAttribute("event") Event event,
            HttpServletRequest request,ServletRequestDataBinder binder,
            ModelMap modelMap){
        try{
            SimpleDateFormat simpleDateFormat = new SimpleDateFormat ("dd/MM/yyyy");
            event.setStartDate(simpleDateFormat.parse(request.getParameter("startDate")));
            event.setEndDate(simpleDateFormat.parse(request.getParameter("endDate")));

            eventService.create(event);
            return "redirect:../event.html";
        }catch (Exception e){
            modelMap.put("event", event);
            return "event/index";
        }   
    }
Run Code Online (Sandbox Code Playgroud)

最后在我的 Jsp 中:

<fieldset>
        <legend>Event Information</legend>
    <s:form method ="post" commandName = "event"
        action="${pageContext.request.contextPath }/event/add.html">
        <table>
            <tr>
                <td>Name</td>
                <td><s:input path = "name"/></td>
            </tr>
            <tr>
                <td valign = "top">Description</td>
                <td><s:textarea path = "description" cols = "20" rows = "5" /></td>
            </tr>
            <tr>
                <td>Start Date</td>
                <td><input type = "date" name = "startDate" /></td>
            </tr>
            <tr>
                <td>End Date</td>
                <td><input type = "date" name = "endDate" /></td>
            </tr>
            <tr>
                <td>&nbsp;</td>
                <td><input type = "submit" value = "Save" /></td>
            </tr>
        </table>
    </s:form>
    </fieldset>
Run Code Online (Sandbox Code Playgroud)

这是 DAO 的实现:

@Repository("eventDAO")
public class EventDAOImpl implements EventDAO{

    @Autowired
    private SessionFactory sessionFactory;

    @SuppressWarnings("unchecked")
    @Override
    public List<EventEntity> findAll() {
        List <EventEntity> list = null;
        Session session = null;
        Transaction transaction = null;
        try{
            session = sessionFactory.openSession();
            transaction = session .beginTransaction();
            list = session.createQuery("select e.id as id, "
                    + "e.name as title, "
                    + "DATE_FORMAT(e.startDate, '%Y-%m-%d') as start, "
                    + "DATE_FORMAT(e.endDate, '%Y-%m-%d') as end "
                    + "from Event e")
                    .setResultTransformer(
                            Transformers.aliasToBean(EventEntity.class))
                    .list();
            transaction.commit();
        }catch(Exception e){
            list = null;
            if(transaction != null){
                transaction.rollback();
            }
        }finally{
            session.close();
        }
        return list;
    }
Run Code Online (Sandbox Code Playgroud)

在我的实体类中,我将变量保存为日期,所以它是

private Date endDate;
Run Code Online (Sandbox Code Playgroud)

我认为问题在于日期的解析,但我不确定!对这个问题的任何解释将不胜感激。

Kar*_*cki 3

@ModelAttribute("event") Event event将使 Spring 尝试将请求值绑定2018-03-13到类型private Date endDate内部的字段Event。您的转换代码不会被调用,因为错误发生在add调用该方法之前。

您需要使用PropertyEditor按此处Converter所述定义全局转换逻辑,或者使用指定每个日期字段的格式:org.springframework.format.annotation.DateTimeFormat

@DateTimeFormat(pattern = "yyyy-MM-dd")
// or use @DateTimeFormat(pattern = DateTimeFormat.ISO.DATE)
private Date endDate;
Run Code Online (Sandbox Code Playgroud)