转载

SpringBoot(四):spring data jpa的使用

1.JPA(Java Persistence API)是Sun官方提出的Java持久化规范。它为Java开发人员提供了一种对象/关联映射工具来管理Java应用中的关系数据。他的出现主要是为了简化现有的持久化开发工作和整合ORM技术,结束现在Hibernate。

版权声明:本文由 低调小熊猫 发表于 低调小熊猫的博客

转载声明:自由转载-非商用-非衍生-保持署名,非商业转载请注明作者及出处,商业转载请联系作者本人qq:2696284032

文章链接: https://aodeng.cc/archives/springboot-si

配置

添加依赖

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>

默认方式

继承JpaRepository

public interface test extends JpaRepository<User, Long> {
}

使用默认方法

就不解释了根据方法名就看出意思来了

test.findAll();
    test.findOne(1l);
    test.save(user);
    test.delete(user);
    test.count();
    test.exists(1l);
原文  https://aodeng.cc/archives/springboot-si
正文到此结束
Loading...