前提・実現したいこと
INNER JOIN句で結合したテーブルのデータをThymeleaf上で表示させたいのですが、下記のエラーに悩まされています。
userのuserPListにThymeleaf上でアクセスする方法
発生している問題・エラーメッセージ
org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'plan' cannot be found on object of type 'org.hibernate.collection.internal.PersistentBag' - maybe not public or not valid?
Thymeleaf
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"> <head> <title>テス</title> <link href="/css/tes.css" rel="stylesheet"></link> <meta charset="utf-8" /> </head> <body> <h1>ユーザー</h1> <table> <thead> <tr> <th>ID</th> <th>名前</th> <th>予定</th> <th>日付</th> </tr> </thead> <tbody> <tr th:each = "user : ${userdata}" th:object="${user}"> <td class="center" th:text="${user.id}"></td> <td th:text="${user.name}"></td> <td th:text="${user.userPList.plan}"></td> <td th:text="${user.date}"></td> </tbody> </table> </body> </html>
Entity
package com.example.springsample.entity; import java.io.Serializable; import java.util.Date; import java.util.List; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.OneToMany; import javax.persistence.Table; import lombok.Data; @Entity @Data @Table(name="user") public class User implements Serializable { //ユーザー情報のエンティティ @Id @Column(name="id") @GeneratedValue(strategy=GenerationType.IDENTITY) private Long id; @Column(name="name") private String name; @Column(name="address") private String address; @Column(name="phone") private String phone; @Column(name="update_date") private Date updateDate; @Column(name="create_date") private Date createDate; @Column(name="delete_date") private Date deleteDate; @OneToMany(mappedBy = "user", cascade = CascadeType.ALL) private List<UserPlan> userPList; }
Entity
package com.example.springsample.entity; import java.io.Serializable; import java.util.Date; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.Table; import lombok.Data; @Entity @Data @Table(name="user_plan") public class UserPlan implements Serializable { //ユーザー予定情報のエンティティ @Id @Column(name="plan_id") private Long plan_id; @Column(name="plan") private String plan; @Column(name="date") private Date date; @ManyToOne @JoinColumn(name="id") private User user; }
Controller
package com.example.springsample.controller; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import com.example.springsample.dto.UserRequest; import com.example.springsample.entity.User; import com.example.springsample.service.UserService; @Controller public class UserController { @Autowired UserService userService; @RequestMapping(value = "/user/list", method = RequestMethod.GET)//user/listにアクセスがあったときユーザー情報を抜き出す public String displayList(Model model) { List<User> userlist = userService.searchAll(); model.addAttribute("userlist", userlist);//modelにSELECTしたデータを追加 return "user/list"; } @RequestMapping(value = "/user/add", method = RequestMethod.GET)//user/addにアクセスがあった時ユーザーリクエストのインスタンスを返す public String displayAdd(Model model) { model.addAttribute("userRequest", new UserRequest()); return "user/add"; } @RequestMapping(value="/user/create", method = RequestMethod.POST) public String create(@ModelAttribute UserRequest userRequest, Model model) { // ユーザー情報の登録 userService.create(userRequest); return "redirect:/user/list"; } @RequestMapping(value = "/user/tes", method = RequestMethod.POST) public String detailModel(Model model, @RequestParam((String) "id") Long id) { //選択ユーザーの抽出 List<User> user = userService.findUser(id); model.addAttribute("userdata", user); return "user/tes"; } }
Repository
package com.example.springsample.repository; import java.util.List; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.query.Param; import org.springframework.stereotype.Repository; import com.example.springsample.entity.User; @Repository public interface UserRepository extends JpaRepository<User, Long> { @Query("SELECT u FROM User u INNER JOIN u.userPList up WHERE u.id = :id") List<User> find(@Param("id") Long id); }
###画像
補足情報
デバッグでSQL文自体は正しく動いており、データを持ってこれている事は確認できました。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/06 06:08
2020/09/06 07:41
2020/09/06 10:45