こんにちは。
Javaについて初学者なので拙いところもあると思いますが、よろしくお願いします。
実現したいこと
SpringBootで、同じDB内にある複数のテーブルを1つの画面に表示させたいです。
###コード
HTML
html
1<!DOCTYPE html> 2<html> 3<head> 4<meta charset="UTF-8"> 5<title>Insert title here</title> 6</head> 7<body> 8 9<table> 10 <tr> 11 <th>名前</th> 12 <th>種類</th> 13 </tr> 14 <tr th:each="Animal: ${Animal}"> 15 <td th:text="${Animal.Name}"></td> 16 <td th:text="${Animal.Species}"></td> 17 </tr> 18</table> 19 20<table> 21 <tr> 22 <th>名前</th> 23 <th>種類</th> 24 </tr> 25 <tr th:each="Plant: ${Plant}"> 26 <td th:text="${Plant.Name}"></td> 27 <td th:text="${Plant.Species}"></td> 28 </tr> 29</table> 30</body> 31</html>
Entityクラス(互いに依存関係なし)
Java
1package com.example.demo; 2 3import javax.persistence.Column; 4import javax.persistence.Entity; 5import javax.persistence.GeneratedValue; 6import javax.persistence.GenerationType; 7import javax.persistence.Id; 8import javax.persistence.Table; 9 10import lombok.Getter; 11import lombok.Setter; 12 13@Getter 14@Setter 15@Entity 16@Table(name="animal") 17public class Animal { 18 19 @Id 20 @GeneratedValue(strategy=GenerationType.IDENTITY) 21 private int id; 22 23 @Column(name="Name") 24 private String Name; 25 26 @Column(name="Species") 27 private String Species; 28 29} 30
Java
1package com.example.demo; 2 3import javax.persistence.Column; 4import javax.persistence.Entity; 5import javax.persistence.GeneratedValue; 6import javax.persistence.GenerationType; 7import javax.persistence.Id; 8import javax.persistence.Table; 9 10import lombok.Getter; 11import lombok.Setter; 12 13@Getter 14@Setter 15@Entity 16@Table(name="plant") 17public class Plant { 18 19 @Id 20 @GeneratedValue(strategy=GenerationType.IDENTITY) 21 private int id; 22 23 @Column(name="Name") 24 private String Name; 25 26 @Column(name="Species") 27 private String Species; 28 29} 30
Applicationクラス
Java
1package com.example.demo; 2 3import org.springframework.boot.SpringApplication; 4import org.springframework.boot.autoconfigure.SpringBootApplication; 5 6@SpringBootApplication 7public class TestPrjApplication { 8 9 public static void main(String[] args) { 10 SpringApplication.run(TestPrjApplication.class, args); 11 } 12 13} 14
Repositoryクラス
Java
1package com.example.demo; 2 3import org.springframework.data.jpa.repository.JpaRepository; 4 5public interface TestRepository extends JpaRepository<Animal, Integer> { 6} 7 8//Plantはどうする?
Serviceクラス
Java
1package com.example.demo; 2 3import java.util.List; 4 5import org.springframework.beans.factory.annotation.Autowired; 6import org.springframework.stereotype.Service; 7import org.springframework.transaction.annotation.Transactional; 8@Service 9@Transactional 10public class TestService{ 11 12 @Autowired 13 TestRepository repository; 14 15 public List<Animal> selectAll() { 16 return repository.findAll(); 17 } 18 19 //Plantはどうする? 20 21}
Controllerクラス
Java
1package com.example.demo; 2 3import java.util.List; 4 5import org.springframework.beans.factory.annotation.Autowired; 6import org.springframework.stereotype.Controller; 7import org.springframework.ui.Model; 8import org.springframework.web.bind.annotation.GetMapping; 9 10 11@Controller 12public class TestController { 13 14 @Autowired 15 TestService service; 16 17 //return html 18 @GetMapping("/Test") 19 public String getAnimal(Model model) { 20 List<Animal> Animal = service.selectAll(); 21 model.addAttribute("Animal", Animal); 22 return "Test"; 23 } 24 25 //getPlantはどうする? 26 27}
build.gradle
plugins { id 'org.springframework.boot' version '2.4.3' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' } group = 'com.example' version = '0.0.1-SNAPSHOT' apply plugin: 'war' sourceCompatibility = '11' repositories { mavenCentral() } dependencies { implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web' runtimeOnly 'mysql:mysql-connector-java' testImplementation 'org.springframework.boot:spring-boot-starter-test' //1 : jpa compile 'org.springframework.boot:spring-boot-starter-data-jpa' //2 : mysql connector compile 'mysql:mysql-connector-java' //3 : tymeleaf compile('org.springframework.boot:spring-boot-starter-thymeleaf') implementation 'org.springframework.boot:spring-boot-starter-web' testImplementation 'org.springframework.boot:spring-boot-starter-test' //lombok // https://mvnrepository.com/artifact/org.projectlombok/lombok compile group: 'org.projectlombok', name: 'lombok', version: '1.18.18' } test { useJUnitPlatform() }
application.propties
spring.jpa.hibernate.ddl-auto=none spring.datasource.url=jdbc:mysql://localhost:3306/Testdb spring.datasource.username=root spring.datasource.password=password #デフォルトの命名規則を無視 #https://stackoverflow.com/questions/38646025/set-table-name-in-spring-jpa spring.jpa.hibernate.naming.implicit-strategy=org.hibernate.boot.model.naming.ImplicitNamingStrategyLegacyJpaImpl spring.jpa.hibernate.naming.physical-strategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl #キャッシュを無効 spring.messages.cache-seconds = 0
###分からないところ
Entityクラスを複数作成した後、それをまとめるクラスを作ってそれに対して一括で扱えるRepositoryやService、Controllerを作成したいのですが、
調べてもどう書くか出てきません。(そもそもこの発想が間違ってますか?)
回答よろしくお願いします。
###参考サイト
https://morelia.tokyo/java/springboot-mysql-insert-select-data/
https://dev.classmethod.jp/articles/using_spring_boot_2/
補足情報
Eclipse 2020 Java FullEdition
AmazonCorretto jdk15.0.2_7
SpringBoot 2.4.3
MySQL 8.0.23
Windows10 Pro 1909
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/29 02:05 編集
2021/03/29 02:12
2021/03/29 02:28 編集
2021/03/29 03:59
2021/03/29 05:11
2021/03/29 21:50
2021/03/30 02:32
2021/03/30 02:54
2021/03/30 21:50
2021/04/05 03:55