`時間がDBに登録できません。コードを変えたりしてみましたが、うまくいかないです。
どのようにすると登録できますでしょうか。
<td>開始時刻</td> <td> <span th:text="${insertMogipuroForm.startTime}"></span>時 </td> <td> <span th:text="${insertMogipuroForm.startMin}"></span>分 </td> </tr> <tr> <td>終了時刻</td> <td> <span th:text="${insertMogipuroForm.endTime}" ></span>時 </td> <td> <span th:text="${insertMogipuroForm.endMin}"></span>分 </td> </tr> `````````ここに言語を入力 ここに言語を入力 ``` こ ``` @RequestMapping(value = "/teacher-nissi-end", params = "nissi_btn") public String teacherNissiend(@ModelAttribute("insertMogipuroForm") InsertMogipuroForm form) { // データ登録に利用するドメインクラスのインスタンス化 MogipuroInfo inputNissiInfo = new MogipuroInfo(); // Formクラスの値をドメインクラスにコピー BeanUtils.copyProperties(form, inputNissiInfo); //登録用・登録用に変換 int year = Integer.parseInt(form.getYear()); int month = Integer.parseInt(form.getMonth()); int day = Integer.parseInt(form.getDay()); String startTime = form.getStartTime(); String startMin = form.getStartMin(); String endTime = form.getEndTime(); String endMin = form.getEndMin(); String theDate = String.format("%04d%02d%02d", year, month, day); MogipuroInfo.setTheDate(theDate); MogipuroInfo.setStartTime1(startTime + ":" + startMin); MogipuroInfo.setEndTime1(endTime + ":" + endMin); // データ登録を行うためのサービス処理呼び出し service.inputNissiInfo(inputNissiInfo); return "redirect:/teacher-nissi-end?finish"; } ``` ``` <エラー>Sat Nov 23 15:32:38 JST 2019 There was an unexpected error (type=Internal Server Error, status=500). ### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: (conn=1032) Column 'sleepstarttime' cannot be null ### The error may involve defaultParameterMap ### The error occurred while setting parameters ### SQL: INSERT INTO nurserydiary (childrenid,name,sleepstarttime,sleependtime,mood,poop,meal,phase,communication,daybookwriter,writedate) VALUES(?,?,?,?,?,?,?,?,?, ?,?) ### Cause: java.sql.SQLIntegrityConstraintViolationException: (conn=1032) Column 'sleepstarttime' cannot be null ; (conn=1032) Column 'sleepstarttime' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: (conn=1032) Column 'sleepstarttime' cannot be null ` ````` ```ここに言語を入力 <insert id="nissiinput"> INSERT INTO nurserydiary (childrenid,name,sleepstarttime,sleependtime,mood,poop,meal,phase,communication,daybookwriter,writedate) VALUES(#{childrenid},#{name},#{startTime1},#{endTime1},#{mood},#{poop},#{meal},#{phase},#{communication}, #{daybookwriter},#{theDate}) </insert> ```
「時間が登録できない」とのことですが、時間と思われる項目が3つあります。一体どの項目が、どのように登録されないのでしょうか。
どの項目が正しく入っていないのかは実装されたクラスの全量がわかりません(特にデータベース登録のロジックがないので、Controllerの実装がうまくないのかどうかしかわかりません)ので、一度デバッグモードで起動し、変数が入っているのかそうでないのかを見たほうが良いでしょう。
しつもんはなにでしょうか。
どのようにするとと言われましてもどこにどの情報をどう登録したいのか分からないのでなんとも。
タイトルの例示がそのままだとしたら全角入ってますしね。
10:10のような形で入力したいのですが、エラーが出てしまいます。
よくわからないけど、おそらくSQLのすたーとたいむいちのマッピングがわるいんでしょう。