前言
上一篇博文,H5+javascript+jQuery的单页面应用(SPA)(三),为了更好的讲解主线内容,我们写死了用户名称和密码。现实环境下中,用户名和密码一般都保存在数据库里。
本文会以 Spring Data JPA + Hibernate + MySQL 演示,通过查询数据库验证用户输入的用户名和密码。
加入 Maven 库依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa