为了账号安全,请及时绑定邮箱和手机立即绑定

不能自动生成表

spring:
 profiles:
   active: dev
 datasource:
   dbcp2:
     driver-class-name: com.mysql.jdbc.Driver
     url: jdbc:mysql://localhost:3306/dbgirl
     username: root
     password: root
     default-auto-commit: true
 jpa:
   show-sql: true
   hibernate:
     ddl-auto: create



package com.bobo;


import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;


@Entity
@Table(name = "girl")
public class Girl {
   @Id
   @GeneratedValue
   private Integer id;

   private String cupSize;

   private Integer age;

   public Girl() {
   }

   public Integer getId() {
       return id;
   }

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

   public String getCupSize() {
       return cupSize;
   }

   public void setCupSize(String cupSize) {
       this.cupSize = cupSize;
   }

   public Integer getAge() {
       return age;
   }

   public void setAge(Integer age) {
       this.age = age;
   }
}


控制台也没有报错,表也生成不了

正在回答

2 回答

我感觉还是配置文件的问题你在仔细看看https://img1.sycdn.imooc.com//5af54a160001a32004510267.jpg

0 回复 有任何疑惑可以回复我~

配置的时候去掉dbcp2:

0 回复 有任何疑惑可以回复我~
#1

慕粉4289691 提问者

还是没有效果
2018-03-07 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
2小时学会Spring Boot
  • 参与学习       151599    人
  • 解答问题       1079    个

Spring Boot入门视频教程,你将学会使用Spring Boot快速构建应用程序

进入课程

不能自动生成表

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信