springDataJPA

1概念

Spring Data JPA 是 Spring Data 项目下的一个模块。提供了一套基于 JPA标准操作数据库的简化方案。底层默认的是依赖 Hibernate JPA 来实现的。   Spring Data JPA 的技术特点:我们只需要定义接口并集成 Spring Data JPA 中所提供的接口就可以了。不需要编写接口实现类。

2.  依赖

   
       
            org.springframework
            spring-orm
            5.1.6.RELEASE
       

       
            org.springframework
            spring-context
            5.1.6.RELEASE
       

       
            org.aspectj
            aspectjweaver
            1.9.2
       

       
            com.alibaba
            druid
            1.1.8
       

       
            mysql
            mysql-connector-java
            8.0.11
       

       
            org.hibernate
            hibernate-core
            5.0.7.Final
       

       
            junit
            junit
            4.12
            test
       

       
            org.springframework
            spring-test
            5.1.6.RELEASE
       

   

 3. 添加数据库的配置文件和Spring的配置文件


       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context.xsd
       http://www.springframework.org/schema/tx
       http://www.springframework.org/schema/context/spring-tx.xsd
">
   
   
   
   
       
       
       
       
   

   
   
       
       
       
       
           
                true
                update
           

       

       
       
           
                com.bobo.pojo
           

       

   

   
   
       
   

   
   
       
   

   
   

   
   

你可能感兴趣的:(spring全家桶,spring,java,spring,boot)