現在SpringBootの学習のため、簡易版のTwitterのようなサンプルアプリケーションを作成しています。
参考にしたサイトのように作ったんですが
importされなかったり、アノテーションでエラーが発生する原因がわからないです。
エラー箇所とエラー内容はコメントで書きました!
参考サイト
参考
参考
↑このサイトは会員登録しないと2ページ目が見れないので登録している方がいれば
Java
1package com.example.demo.entity; 2 3/* 4インポートされた javax.persistence は見つかりま 5 せん 6*/ 7import javax.persistence.Column; 8import javax.persistence.Entity; 9import javax.persistence.GeneratedValue; 10import javax.persistence.GenerationType; 11import javax.persistence.Id; 12import javax.persistence.Table; 13 14@Entity //Entity を型に解決できません 15@Table(name="Posts_table",schema="SampleApp")//Table を型に解決できません 16public class PostsTable { 17 18 @Id //Id を型に解決できません 19 @Column(name="id") //Column を型に解決できません 20 @GeneratedValue(strategy=GenerationType.IDENTITY) //Column を型に解決できません 21 private int id; 22 23 @Column(name="users_id") 24 private int users_id; 25 26 @Column(name="title") 27 private String title; 28 29 @Column(name="content") 30 private String content; 31 32 public int getId() { 33 return id; 34 } 35 36 public void setId(int id) { 37 this.id = id; 38 } 39 40 public int getUsers_id() { 41 return users_id; 42 } 43 44 public void setUsers_id(int users_id) { 45 this.users_id = users_id; 46 } 47 48 public String getTitle() { 49 return title; 50 } 51 52 public void setTitle(String title) { 53 this.title = title; 54 } 55 56 public String getContent() { 57 return content; 58 } 59 60 public void setContent(String content) { 61 this.content = content; 62 } 63 64 65}
Gradle
1 2dependencies { 3 compile 'org.springframework.boot:spring-boot-starter-thymeleaf' 4 implementation 'org.springframework.boot:spring-boot-starter-web' 5 compile 'org.springframework.boot:spring-boot-starter-data-jpa' 6 compile 'mysql:mysql-connector-java' 7 developmentOnly 'org.springframework.boot:spring-boot-devtools' 8 testImplementation('org.springframework.boot:spring-boot-starter-test') { 9 exclude group: 'org.junit.vintage', module: 'junit-vintage-engine' 10 } 11 runtimeOnly 'com.h2database:h2' 12 compileOnly('org.projectlombok:lombok') 13 testCompile('org.springframework.boot:spring-boot-starter-test') 14}
MySql
1spring.datasource.url=jdbc:mysql://localhost:3306/SampleApp 2spring.datasource.username=**** //ここはちゃんと入力しています 3spring.datasource.password=**** //ここはちゃんと入力しています 4spring.datasource.driverClassName=com.mysql.jdbc.Driver 5spring.jpa.database=MYSQL 6spring.jpa.hibernate.ddl-auto=update 7spring.datasource.hikari.connectionTimeout = 30000 8spring.datasource.hikari.idleTimeout = 600000
回答1件
あなたの回答
tips
プレビュー