springboot jpa - hibenate 를 통 해 데이터베이스 폼 생 성

12379 단어 자바
pom.xml
 <!-- springboot  jpa -->
      <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter-data-jpa</artifactId>
      </dependency>
      <dependency>
           <groupId>mysql</groupId>
           <artifactId>mysql-connector-java</artifactId>
       </dependency>

전역 프로필 `
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.username=root
spring.datasource.password=123456
spring.datasource.url=jdbc:mysql://localhost:3306/db5
#      json     
spring.jackson.serialization.indent-output=true
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true
spring.jpa.hibernate.dialect=org.hibernate.dialect.MySQL5Dialect


pojo
package com.example.pojo;
import javax.persistence.*;
import javax.xml.crypto.Data;
@Entity
//@Table(name = "t_user1")
public class User {
  @Id
  @GeneratedValue(strategy = GenerationType.AUTO)
    private  int id;
//   @Column
    private String name;
    private String password;
    private String email;
    private String birthday;
  
    public int getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    public String getEmail() {
        return email;
    }

    public void setEmail(String email) {
        this.email = email;
    }

    public String getBirthday() {
        return birthday;
    }

    public void setBirthday(String birthday) {
        this.birthday = birthday;
    }





}


dao 층
package com.example.dao;

import com.example.pojo.User;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

@Repository
public interface UserDao extends JpaRepository<User,Integer> {
}


메 인 키 가 자동 으로 증가 하도록 설정 할 때 부터 id 를 Integer 형식 으로 정의 하여 데이터베이스 메 인 키 를 생 성 할 수 없습니다. 환경 시 idea + my sql

좋은 웹페이지 즐겨찾기