springboot+jpa的注册登陆

这周用springboot+jpa写了一个登陆注册,小结一下。
一:首先是新建一个springboot项目,
1.第一步:选择spring initializr
springboot+jpa的注册登陆_第1张图片
2.第二步 :
springboot+jpa的注册登陆_第2张图片
3.第三步:
springboot+jpa的注册登陆_第3张图片
二:项目基本创建完成,接下来就是导入所需要的jar包,用了maven的管理方式。

mysql
mysql-connector-java
6.0.6

org.springframework.boot spring-boot-starter-data-jpa 三:写.yml文件,在application.yml中添加如下内容: spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://127.0.0.1:3306/test?serverTimezone=UTC username: root password:

jpa:
hibernate:
ddl-auto: update
show-sql: true
四:写实体类:
在类中,添加注解@Entity
@Id @@GeneratedValue
写一个空的构造器,并且加上set和get方法
五:dao,service,serviceImpl,controller就不一一介绍了,跟框架的那里一样。
好了,今天就先分享到这里,谢谢各位小伙伴。一起学习进步吧!

你可能感兴趣的:(springboot)