SpringでJSTLを使用していて、次のコードがあります。
<form:input type="datetime-local" path="startDate" />
ここで、startDateはjava.util.Dateです。
入力から日付と時刻を取得するにはどうすればよいですか?正しい方法はありますか、それとも入力から文字列を取得し、それをjava.util.Dateに変換するコードを書く必要がありますか?
前もって感謝します。
これは私のnuevaTarea.jspです:
<%@ include file="/WEB-INF/jsp/include.jsp" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Nueva tarea</title>
<link rel="stylesheet" type="text/css" href="resources/css/style.css" media="screen" />
</head>
<body>
<h1>Nueva tarea</h1>
<form:form action="nuevatarea.htm" method="POST" commandName="tareaForm">
<label>Fecha de inicio:</label><form:input type="datetime-local" path="fechaInicio" /><br />
<label>Fecha de fin:</label><form:input type="datetime-local" path="fechaFin" /><br />
<input type="submit" value="Crear tarea" />
</form:form>
</body>
</html>
これは、コマンドクラスである私のTareaForm.javaです。
パッケージweb.controller;
import java.util.Date;
パブリッククラスTareaForm{
private Date fechaInicio;
private Date fechaFin;
public Date getFechaFin() {
return fechaFin;
}
public Date getFechaInicio() {
return fechaInicio;
}
public void setFechaFin(Date fechaFin) {
this.fechaFin = fechaFin;
}
public void setFechaInicio(Date fechaInicio) {
this.fechaInicio = fechaInicio;
}
}
そして、これは私のコントローラーnuevaTareaController.javaです。
パッケージweb.controller;
import javax.servlet.http.HttpServletRequest;
import org.springframework.validation.BindException;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.SimpleFormController;
public class nuevaTareaController extends SimpleFormController {
public nuevaTareaController() {
setCommandClass(TareaForm.class);
setCommandName("tareaForm");
}
@Override
protected Object formBackingObject(HttpServletRequest request) throws Exception {
return (TareaForm)super.formBackingObject(request);
}
@Override
protected ModelAndView onSubmit(Object command, BindException bindException)
throws Exception {
// Do something with (TareaForm)command
return new ModelAndView(getSuccessView());
}
}
これは、ディスパッチャーサーブレットのコントローラーの構成です。
<bean class="web.controller.nuevaTareaController">
<property name="formView" value="nuevaTarea" />
<property name="successView" value="tareaCreada" />
<property name="gestorTareas" ref="tareas" />
</bean>