質問編集履歴

3

厳密な表現

2021/01/28 03:57

投稿

trgw
trgw

スコア26

test CHANGED
@@ -1 +1 @@
1
- 外部キーだけ持っているが外部のそのキー(id)に対応するデータを取得し、 thymeleaf で HTML(view) に表示したい
1
+ テーブルから得た List が外部キーだけ持っているが外部のそのキー(id)に対応するデータを取得し、 thymeleaf で HTML(view) に表示したい
test CHANGED
@@ -272,4 +272,4 @@
272
272
 
273
273
  となります。
274
274
 
275
- これをカテゴリのところを int でなくて、対応するカテゴリの String を表示したいのですが、どういった方法があるでしょうか。
275
+ `${booklist}`には category id の情報しかないわけですが、テーブルのカテゴリのところを id でなくて、対応するカテゴリ(文字列)を表示したいのですが、どういった方法があるでしょうか。

2

誤字

2021/01/28 03:57

投稿

trgw
trgw

スコア26

test CHANGED
File without changes
test CHANGED
@@ -244,7 +244,7 @@
244
244
 
245
245
  <td th:text="${books.name}">b</td>
246
246
 
247
- <td th:text="${products.bookCategoryId}">c</td>
247
+ <td th:text="${books.bookCategoryId}">c</td>
248
248
 
249
249
  </tr>
250
250
 

1

誤字

2021/01/28 03:35

投稿

trgw
trgw

スコア26

test CHANGED
File without changes
test CHANGED
@@ -146,7 +146,7 @@
146
146
 
147
147
 
148
148
 
149
- public interface ProductMasterRepository extends JpaRepository<Books, Long> {
149
+ public interface BooksRepository extends JpaRepository<Books, Long> {
150
150
 
151
151
 
152
152