springboot-数据库

Posted 开拖拉机的蜡笔小新

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot-数据库相关的知识,希望对你有一定的参考价值。

Spring-data-jpa

jpa定义了一系列持久化的标准,比如hibernate就实现了这一标准。

Springboot 的jpa就是hibernate的整合。

在pom文件中增加配置:

<dependency>
  <groupId>mysql</groupId>
  <artifactId>mysql-connector-java</artifactId>
</dependency>

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

 在application.yml文件中配置:

 datasource:
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://127.0.0.1:3306/test
    username: root
    password: root
 jpa:
    hibernate:
      ddl-auto: update
    show-sql: true

新建一个girl的类:

@Entity
public class Girl {
    
    @Id
    @GeneratedValue
    private Integer id;
    
    private String grade;
    
    private Integer age;
    
    public Girl(){
    }
//省略get set程序

运行程序就可以在数据库中自动生成一个girl的表,可以说是非常方便了。

 










以上是关于springboot-数据库的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot中表单提交报错“Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported“(代码片段

Spring boot:thymeleaf 没有正确渲染片段

11SpringBoot-CRUD-thymeleaf公共页面元素抽取

学习小片段——springboot 错误处理

项目启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedde(代码片段

springboot 底层点的知识