SpringBoot 整合spring data jpa

SpringBoot 整合spring data jpa_第1张图片

SpringBoot 整合spring data jpa_第2张图片
springboot 整合spring data jpa 首先要导入依赖的jar包。pom.xml 文件中新增如下依赖:


    4.0.0
    com.example
    demojsp
    0.0.1-SNAPSHOT
    war
    demojsp
    Demo project for Spring Boot
    
        org.springframework.boot
        spring-boot-starter-parent
        2.0.2.RELEASE
         
    
    
        UTF-8
        UTF-8
        1.8
    
    
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.springframework.boot
            spring-boot-starter-tomcat
            provided
        
        
            org.apache.tomcat.embed
            tomcat-embed-jasper
        
        
            org.springframework.boot
            spring-boot-starter-data-jpa
        
        
            mysql
            mysql-connector-java
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    
    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    
application.xml 中配置:数据库连接信息(如使用嵌入式数据库则不需要)、自动创建表结构的设置,例如使用mysql的情况如下:
spring.datasource.url=jdbc:mysql://localhost:3306/ppshop
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.jpa.properties.hibernate.hbm2ddl.auto=create-drop
spring.jpa.properties.hibernate.hbm2ddl.auto 是hibernate的配置属性,其主要作用是:自动创建、更新、验证数据库表结构。该参数的几种配置如下:
  • create:每次加载hibernate时都会删除上一次的生成的表,然后根据你的model类再重新来生成新表,哪怕两次没有任何改变也要这样执行,这就是导致数据库表数据丢失的一个重要原因。
  • create-drop:每次加载hibernate时根据model类生成表,但是sessionFactory一关闭,表就自动删除。
  • update:最常用的属性,第一次加载hibernate时根据model类会自动建立起表的结构(前提是先建立好数据库),以后加载hibernate时根据model类自动更新表结构,即使表结构改变了但表中的行仍然存在不会删除以前的行。要注意的是当部署到服务器后,表结构是不会被马上建立起来的,是要等应用第一次运行起来后才会。
  • validate:每次加载hibernate时,验证创建数据库表结构,只会和数据库中的表进行比较,不会创建新表,但是会插入新值。
至此已经完成基础配置,如果您有在Spring下整合使用过它的话,相信你已经感受到Spring Boot的便利之处:JPA的传统配置在persistence.xml文件中,但是这里我们不需要。当然,最好在构建项目时候按照之前提过的最佳实践的工程结构来组织,这样以确保各种配置都能被框架扫描到。
创建实体
@Entity
@Table(name = "tb_user")
public class User {
    @Id
    @GeneratedValue
    private Integer id;
    @Column
    private String username;
    @Column
    private String password;
    @Column
    private String phone;
    @Column
    private String email;
    @Column
    private Date created;
    @Column
    private Date updated;
     
    //省略构造函数
    //省略get和set
}
创建数据访问接口
public interface UserRepository extends JpaRepository {
    User findUserByUsername(String username);
    List findAll();
}
在Spring-data-jpa中,只需要编写类似上面这样的接口就可实现数据访问。不再像我们以往编写了接口时候还需要自己编写接口实现类,直接减少了我们的文件清单。
下面对上面的 UserRepository 做一些解释,该接口继承自 JpaRepository ,通过查看 JpaRepository 接口的 API文档 ,可以看到该接口本身已经实现了创建(save)、更新(save)、删除(delete)、查询(findAll、findOne)等基本操作的函数,因此对于这些基础操作的数据访问就不需要开发者再自己定义。
@RestController
public class TestController {
    @Autowired
    private UserRepository userRepository;
    @RequestMapping("/queryUser")
    public User queryUser(){
        User user = userRepository.findUserByUsername("pangkaigaungg");
        return user;
    }
    @RequestMapping("/findAll")
    public List findAll(){
        List users = userRepository.findAll();
        return users;
    }
}
@SpringBootApplication
public class DemojspApplication extends SpringBootServletInitializer {
    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(DemojspApplication.class);
    }
    public static void main(String[] args) {
        SpringApplication.run(DemojspApplication.class, args);
    }
}
启动测试:
SpringBoot 整合spring data jpa_第3张图片

目录结构:

SpringBoot 整合spring data jpa_第4张图片






你可能感兴趣的:(springboot)