【春季启动】使用MySQL数据库和BootStrap
我所学到的东西
使用Spring Initializr创建项目
与MySQL建立连接
传递查询信息
导入BootStrap
编写Thymeleaf的方法
请参考下面的视频。
请参考所附视频。
请查看下面提供的视频。
请参考下面的影片。
请查看以下影片。
软件应用程序
春季工具套件4
引导程序
MySQL数据库服务器
完成
总结
這次困難的點在於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类
这段代码是在Service类中使用了注解”@Service”和”@Autowired”。
登场在 Controller 类中
@Controller
@GetMapping
@RequestMapping
@PathVariable
@ModelAttribute
最后
下一步是创建Spring Security项目。
下一个项目:【Spring Boot】使用MySQL数据库、Bootstrap和HTML5进行注册和登录,以及Spring安全性。