欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring boot 连接数据库

程序员文章站 2024-03-14 10:09:28
...

第一步 新建yml文件

spring boot 连接jpa数据库yml文件
spring boot 连接数据库

第二步在该位置创建你需要用到的表模型

选择Java class

spring boot 连接数据库
例:

package com.example.springboottest.entity;

import lombok.Data;

import javax.persistence.Entity;
import javax.persistence.Id;

@Entity
@Data
public class Book {
    @Id
    private Integer id;
    private String name;
    private String author;
}
//注解记得添加

第三步创建接口

选择interface
spring boot 连接数据库

package com.example.springboottest.repository;

import com.example.springboottest.entity.Book;
import org.springframework.data.jpa.repository.JpaRepository;

public interface BookRepository extends JpaRepository<Book,Integer> {
}
//需要继承JpaRepository

第四步测试repository

spring boot 连接数据库选择你刚刚创建的repository类右键该处选择 go to → test,创建

spring boot 连接数据库会在该处生成一个test类,举例代码:

package com.example.springboottest.repository;

import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;

import static org.junit.jupiter.api.Assertions.*;

@SpringBootTest
class BookRepositoryTest {
    @Autowired
    private BookRepository bookRepository;
    @Test
    void findAll(){
        System.out.println(bookRepository.findAll());
    }
}

然后你运行一下看看是否能够查询到数据库的信息

最后一步

spring boot 连接数据库在controller下创建handler

例码

package com.example.springboottest.controller;

import com.example.springboottest.entity.Book;
import com.example.springboottest.repository.BookRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.List;

@RestController
@RequestMapping("/book")
public class BookHandler {
    @Autowired
    private BookRepository bookRepository;
    @GetMapping("/findAll")
    public List<Book>findAll(){
        return bookRepository.findAll();
    }
}
//记得添加注解

最后运行该文件
spring boot 连接数据库
浏览器输入

http://localhost:8181/book/findAll

正常情况下该页面会显示数据库的信息,到此spring boot和数据库就调通了

相关标签: vue+spring boot