前提・実現したいこと
spring-bootでログイン画面を実装しようとしています。
本を参考に実装していたのですが以下のエラーメッセージが出ています。
事象としてはアプリケーションを実行してhttp://localhost:8080/loginでアクセスするとエラー画面が表示されます。
発生している問題・エラーメッセージ
エラーメッセージServlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "userid" (template: "login" - line 51, col 40)] with root cause org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'userid' cannot be found on null
###コントローラ
@RequestMapping(value = "/login",method = RequestMethod.POST) @Transactional(readOnly = false) public ModelAndView postLogin(@ModelAttribute("logindata") loginData ld, ModelAndView mav) { mav.setViewName("login"); loginData data = repository.findByUserid((String)ld.getUserid()); if(data.getPassword() == ld.getPassword() ) { return new ModelAndView("redirect:/memo"); } return mav; }
###HTML
<body> <h1>ログインページ</h1> <table> <form method="post" action="/login" th:object="${logindata}"> <tr> <td><label>ログインID</label></td> <td><input type="text" th:text="*{userid}" required/></td> </tr> <tr> <td><label>パスワード</label></td> <td><input type="password" th:text="*{password}" required/></td> </tr> <button class="btn-primary" type="submit">ログイン</button> </form> </table> <a th:href="@{'/SignUp'}">ユーザー登録</a> </body>
###エンティティ
@Entity @Table(name= "loginData") public class loginData { @Id @GeneratedValue(strategy = GenerationType.AUTO) @Getter @Setter private long id; @Getter @Setter @Column(length = 50, nullable = false) private String userid; @Getter @Setter @Column(length = 50, nullable = false) private String password; }
試したこと
th:textで定義している*{userid}等を${userid}のように変えると画面は表示されますが、今度はデータがコントローラーに渡されないという事象が発生します。
@ModelAttributeでuseridとpaswordをそれぞれ受け取る方法もやろうとしたのですが駄目でした。
補足情報(FW/ツールのバージョンなど)
spring-bootversion '2.4.2'
回答1件
あなたの回答
tips
プレビュー