【Spring Boot】 Using MySQL Database & BootStrap
今回は、Spring initializrからプロジェクトを作成しました。
学べたこと
Spring initializrからプロジェクトを作成する
MySQLとの接続
クエリ情報の受け渡し
BootStrapの導入
Thymeleafの記述方法
参考動画
YouTube:https://youtu.be/foARzSz_1WU
Software programs
完成
まとめ
今回苦労した点は、EditとDeleteボタンのクエリ情報の受け渡しの記述でした
下記の様に記述しました
<!-- Add new ボタン-->
<a th:href="@{'/new/'}">Add new</a>
<!-- Edit & Delete ボタン-->
<td><a th:href="@{/edit/{id}(id=${student.id})}" class="btn btn-primary">Edit </a></td>
<td><a th:href="@{/delete/{id}(id=${student.id})}" class="btn btn-danger">Delete</a></td>
今回登場したアノテーション
Entityクラスに登場
@Entity
@table
@Id
@GeneratedValue
@Column
Repositoryクラスに登場
@Repository
Serviceクラスに登場
@Service
@Autowired
Controllerクラスに登場
@Controller
@GetMapping
@RequestMapping
@PathVariable
@ModelAttribute
最後に
次は、Spring Securityのプロジェクトを作成します。
次のプロジェクト:【Spring Boot】 Registration and Login with MySQL Database, Bootstrap and HTML5, Spring Security
Author And Source
この問題について(【Spring Boot】 Using MySQL Database & BootStrap), 我々は、より多くの情報をここで見つけました https://qiita.com/iwasaki-hub/items/541ad66b62083e05da62著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .