美文网首页SpringBoot精通之路-低调小熊猫
SpringBoot(四):spring data jpa的使用

SpringBoot(四):spring data jpa的使用

作者: 低调小熊猫 | 来源:发表于2018-11-13 10:09 被阅读6次

    简介

    1.JPA(Java Persistence API)是Sun官方提出的Java持久化规范。它为Java开发人员提供了一种对象/关联映射工具来管理Java应用中的关系数据。他的出现主要是为了简化现有的持久化开发工作和整合ORM技术,结束现在Hibernate。
    本作品采用<a rel="license" href="http://creativecommons.org/licenses/by/4.0/">知识共享署名 4.0 国际许可协议</a>进行许可。
    版权声明:本文由 低调小熊猫 发表于 低调小熊猫的博客
    转载声明:自由转载-非商用-非衍生-保持署名,非商业转载请注明作者及出处,商业转载请联系作者本人qq:2696284032
    文章链接:https://aodeng.cc/archives/springboot-si

    单纯的广告

    个人博客:https://aodeng.cc
    微信公众号:低调小熊猫
    qq交流群:756796932

    配置

    添加依赖

    <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);
    

    相关文章

      网友评论

        本文标题:SpringBoot(四):spring data jpa的使用

        本文链接:https://www.haomeiwen.com/subject/dadkfqtx.html