リダイレクトするには、Controllerの返却値のprefixにredirect:と付けるだけです。 return "redirect:/foo/bar" リダイレクト先に値を渡すにはRedirectAttributesを使います。これを使うとリダイレクト先でmodelに値を再度セットする必要もないので便利ですね。 Controller.java @RequestMapping(value="/to...
Javaで書かれたSpring APIをKotlinで書いて比較してみたis linked3 years ago Kotlin + SpringBoot + JPA + Thymeleafで簡単なCRUDを作る③~Validationの追加~is linked5 years ago Kotlin + SpringBoot + JPA + Thymeleafで簡単なCRUDを作る①~HelloWorldまで~is linked5 years ago Comments @ozaki25...
HelloController.java model.addAttribute("users",newUsers()); index.html UsersクラスのgetName()を呼び出している。 一応getterさえあればメンバ変数がなくても呼び出せるようだ。 キャメル型でないgetname()はダメでnot foundとエラーが出る。 lombokを導入していれば@Getterか@Dataを使えばgetter...