前提・実現したいこと
Spring Bootを使って、簡単な銭湯めぐりのWeb日記帳を制作しています。
検索画面(search.html)で検索したい事項を入力し、検索結果は一覧画面(list.html)で表示したいです。
すでに入力した施設名を使ってあいまい検索を行いたいのですが、search.html上で情報を入力し、検索を押しても、何も施設情報の入っていない一覧画面(list.html)が出ます。
一方で、別に用意してあるトップページから直接、一覧画面(list.html)にアクセスした際には、すでに登録してある施設情報が全件しっかりと表示されます。
発生している問題・エラーメッセージ
Spring Boot上でエラーメッセージは出ていないこともあり、何故上手くいかないかの分からずに困っております。
該当のソースコード
html
1search.html 2<!DOCTYPE html> 3<html xmlns:th="http://www.thymeleaf.org"> 4<head> 5<meta charset="UTF-8"> 6<title>検索</title> 7</head> 8<body> 9<form th:action="@{/search}" method="post"> 10<p>検索<input type="text" name="key" /> 11<input type="submit" value="検索"/></p> 12</form> 13</body> 14</html>
html
1list.html 2<!DOCTYPE html> 3<html xmlns:th="http://www.thymeleaf.org"> 4<head> 5<meta charset="UTF-8"> 6</head> 7<body> 8 <h3>一覧</h3> 9 <table> 10 <tr> 11 <th>施設名</th> 12 <th>所在地</th> 13 <th>評価</th> 14 <th>詳細</th> 15 </tr> 16 <tr th:each="e:${list}"> 17 <td th:text="${e.name}"></td> 18 <td th:text="${e.location}"></td> 19 <td th:text="${e.reputation}"></td> 20 <td><a th:href="${'/show/'+e.id}">表示</a> 21 </tr> 22 </table> 23 <a th:href="@{'/'}">トップへ</a> 24</body> 25</html>
java
1コントローラー 2package com.example.demo; 3 4import java.util.List; 5import java.util.Optional; 6 7import org.springframework.beans.factory.annotation.Autowired; 8import org.springframework.stereotype.Controller; 9import org.springframework.transaction.annotation.Transactional; 10import org.springframework.web.bind.annotation.GetMapping; 11import org.springframework.web.bind.annotation.ModelAttribute; 12import org.springframework.web.bind.annotation.PathVariable; 13import org.springframework.web.bind.annotation.PostMapping; 14import org.springframework.web.bind.annotation.RequestMapping; 15import org.springframework.web.bind.annotation.RequestParam; 16import org.springframework.web.servlet.ModelAndView; 17 18@Controller 19public class OfuroController { 20 @Autowired 21 OfuroRepository repository; 22 23・・・関係のない削除機能などの部分を一部略します・・・ 24 25 @RequestMapping(value = "/list") 26 public ModelAndView list(ModelAndView mv) { 27 mv.setViewName("list"); 28 List<OfuroEntity> list = repository.findAll(); 29 mv.addObject("list", list); 30 return mv; 31 } 32 33 @RequestMapping(value = "/show/{id}") 34 public ModelAndView show(@ModelAttribute OfuroEntity entity, @PathVariable Integer id, ModelAndView mv) { 35 mv.setViewName("show"); 36 Optional<OfuroEntity> show = repository.findById(id); 37 mv.addObject("form", show.get()); 38 return mv; 39 } 40 @RequestMapping("/search") 41 public ModelAndView search(@ModelAttribute("form") OfuroEntity entity, ModelAndView mv) { 42 mv.setViewName("search"); 43 return mv; 44} 45 @PostMapping(value="/search") 46 public ModelAndView search(@RequestParam("key") String key,ModelAndView mv) { 47 mv.setViewName("list"); 48 List<OfuroEntity> list = repository.findByNameLike("%" + key + "%"); 49 mv.addObject("list", list); 50 return new ModelAndView("/list"); 51 } 52}
java
1レポジトリ 2package com.example.demo; 3 4import java.util.List; 5import org.springframework.data.jpa.repository.JpaRepository; 6import org.springframework.stereotype.Repository; 7 8@Repository 9public interface OfuroRepository extends JpaRepository<OfuroEntity, Integer> { 10 public List<OfuroEntity> findByNameLike(String key); 11}
java
1エンティティ 2package com.example.demo; 3 4import javax.persistence.Column; 5import javax.persistence.Entity; 6import javax.persistence.GeneratedValue; 7import javax.persistence.GenerationType; 8import javax.persistence.Id; 9import javax.persistence.Table; 10 11@Entity 12@Table(name="ofuro") 13public class OfuroEntity { 14@Id 15@GeneratedValue(strategy=GenerationType.AUTO) 16@Column 17private Integer id; 18@Column(length=50, nullable=false) 19private String name; 20@Column(nullable=false) 21private String location; 22@Column(nullable=false) 23private String genre; 24@Column(nullable=false) 25private String reputation; 26@Column(length=400, nullable=true) 27private String memo; 28public Integer getId() { 29 return id; 30} 31public void setId(Integer id) { 32 this.id = id; 33} 34public String getName() { 35 return name; 36} 37public void setName(String name) { 38 this.name = name; 39} 40public String getLocation() { 41 return location; 42} 43public void setLocation(String location) { 44 this.location = location; 45} 46public String getGenre() { 47 return genre; 48} 49public void setGenre(String genre) { 50 this.genre = genre; 51} 52public String getReputation() { 53 return reputation; 54} 55public void setReputation(String reputation) { 56 this.reputation = reputation; 57} 58public String getMemo() { 59 return memo; 60} 61public void setMemo(String memo) { 62 this.memo = memo; 63} 64}
試したこと
コントローラーに問題があると予想していますが、どの部分を書き換えればいいのか分からずに苦戦しています。
補足情報(FW/ツールのバージョンなど)
Spring Boot,HTML,CSSを使う課題の一部です。
回答1件
あなたの回答
tips
プレビュー