Boa noite,
O meu projeto Spring-Boot nao consegue gerar as tabelas do banco, diferentemente de quando estava usando Hibernate com Tomcat ou Wildfly e o persistente.xml
Tem alguma outra dependência que tenha que usar? Tenho que criar alguma configuração programaticamente?
Atenciosamente, Bernardo
Dependencias
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<version>2.0.0.RELEASE</version>
</dependency>
Classe Pessoa
import java.io.Serializable;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import org.hibernate.annotations.GenericGenerator;
@Entity
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Pessoa implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(generator = "uuid")
@GenericGenerator(name = "uuid", strategy = "org.hibernate.id.UUIDGenerator")
private String id;
private String nome;
private String email;
public Pessoa() {
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
}
JPA application.propeerties
spring.jpa.hibernate.ddl-auto: update
spring.jpa.show-sql: true
spring.jpa.generate-ddl: true
Datasource application.propeerties
spring.datasource.driver-class-name: com.mysql.jdbc.Driver
spring.datasource.username:
spring.datasource.password:
spring.datasource.url: jdbc:mysql://localhost:3306/Teste