springboot整合JPA过程解析
这篇文章主要介绍了springboot整合JPA过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
接下来具体看看是怎么弄的。
1、新建一个springboot项目,选择web、datajdbc、datajpa、mysqldriver。
2、建立以下目录及结构:
pom.xml
4.0.0 org.springframework.boot spring-boot-starter-parent 2.2.4.RELEASE com.gong springbootjpa 0.0.1-SNAPSHOT springbootjpa DemoprojectforSpringBoot 1.8 org.springframework.boot spring-boot-starter-data-jdbc org.springframework.boot spring-boot-starter-data-jpa org.springframework.boot spring-boot-starter-web mysql mysql-connector-java 5.1.41 runtime org.springframework.boot spring-boot-starter-test test org.junit.vintage junit-vintage-engine org.springframework.boot spring-boot-maven-plugin
3、在application.yml中配置连接数据库和jpa相关配置
spring: datasource: url:jdbc:mysql://192.168.124.22:3306/jpa username:root password:123456 driver-class-name:com.mysql.jdbc.Driver jpa: hibernate: #更新或者创建数据表结构 ddl-auto:update #控制台显示SQL show-sql:true
4、新建一个entity包,新建实体类User.java
packagecom.gong.springbootjpa.entity; importcom.fasterxml.jackson.annotation.JsonIgnoreProperties; importjavax.persistence.*; //使用JPA注解配置映射关系 @Entity//告诉JPA这是一个实体类(和数据表映射的类) @Table(name="tbl_user")//@Table来指定和哪个数据表对应;如果省略默认表名就是user; @JsonIgnoreProperties(value={"hibernateLazyInitializer","handler"}) publicclassUser{ @Id//这是一个主键 @GeneratedValue(strategy=GenerationType.IDENTITY)//自增主键 privateIntegerid; @Column(name="last_name",length=50)//这是和数据表对应的一个列 privateStringlastName; @Column//省略默认列名就是属性名 privateStringemail; publicIntegergetId(){ returnid; } publicvoidsetId(Integerid){ this.id=id; } publicStringgetLastName(){ returnlastName; } publicvoidsetLastName(StringlastName){ this.lastName=lastName; } publicStringgetEmail(){ returnemail; } publicvoidsetEmail(Stringemail){ this.email=email; } }
5、新建一个repository包,新建一个UserRepository.java
packagecom.gong.springbootjpa.repository; importcom.gong.springbootjpa.entity.User; importorg.springframework.data.jpa.repository.JpaRepository; //继承JpaRepository来完成对数据库的操作,在JdbcRepository中指定实体类,数据库中主键对应的java类型 publicinterfaceUserRepositoryextendsJpaRepository{ }
6、新建一个controller包,新建一个UserController.java
经过上述配置之后,我们就可以直接利用UserRepository中的一些方法进行数据库的操作啦,是不是很方便。
packagecom.gong.springbootjpa.controller; importcom.gong.springbootjpa.entity.User; importcom.gong.springbootjpa.repository.UserRepository; importorg.springframework.beans.factory.annotation.Autowired; importorg.springframework.web.bind.annotation.GetMapping; importorg.springframework.web.bind.annotation.PathVariable; importorg.springframework.web.bind.annotation.RestController; @RestController publicclassUserController{ @Autowired UserRepositoryuserRepository; @GetMapping("/user/{id}") publicUsergetUser(@PathVariable("id")Integerid){ Useruser=userRepository.getOne(id); returnuser; } @GetMapping("/user") publicUserinsertUser(Useruser){ Usersave=userRepository.save(user); returnsave; } }
7、启动服务器
插入一条数据:
查询一条数据:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。