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

创建表报Process finished with exit code 1

https://img1.sycdn.imooc.com//5bd577aa0001241713450202.jpg

//Girl

package com.imooc.demo;

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

@Entity
public class Girl {
    @Id
    @GeneratedValue
    private  Integer id;
    private  String cuoSize;
    private  Integer age;

    public Integer getId() {
        return id;
    }

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

    public String getCuoSize() {
        return cuoSize;
    }

    public void setCuoSize(String cuoSize) {
        this.cuoSize = cuoSize;
    }

    public Integer getAge() {
        return age;
    }

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


配置文件

spring.profiles.active=prod
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc.mysql://127.0.0.1:3306/soft1602
spring.datasource.username=soft1602
spring.datasource.password=123456asd
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true

启动
package com.imooc.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class GirlApplication {

    public static void main(String[] args) {
        SpringApplication.run(GirlApplication.class, args);
    }
}


正在回答

1 回答

@SpringBootApplication
public class GirlApplication {

    public static void main(String[] args) {
        SpringApplication.run(GirlApplication.class, args);
    }
}

注解

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

举报

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

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

进入课程

创建表报Process finished with exit code 1

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