实体类未使用JPA在MySql数据库中创建表

问题描述

虽然我可以在其他项目中创建表,但是该项目不是从实体类创建表。在Spring Boot jpa中,我使用eclipse拥有以下实体类

if new keyword exists in stdin: 
      take the filename with path
else
      nothing.

存储库类如下:

package com.abc.allcoaches.entity;

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


@Entity
@Table(name = "Coaches_TBL")

public class Coaches {
    @Id
    @GeneratedValue(strategy=GenerationType.IDENTITY)
    private int id;
    private String t;
    private String c;
    
    
    
    public Coaches() {
        
    }
    
    public Coaches(int id,String team,String coach ) {
        
        super();
        this.id = id;
        this.t = team;
        this.c = coach;
        
    
    }

    public int getId() {
        return id;
    }

    public void setID(int id) {
        this.id = id;
    }

    public String getT() {
        return t;
    }

    public void setT(String t) {
        this.t = t;
    }

    public String getC() {
        return c;
    }

    public void setC(String c) {
        this.c = c;
    }

    
    
}


这是属性文件

package com.abc.allcoaches.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import com.abc.allcoaches.entity.Coaches;


public interface CoachesRepository extends JpaRepository<Coaches,Integer> {

    Coaches findByTeam(String team);
    
}

但是运行项目没有任何错误之后,我看不到在MysqL工作台中创建的表。我尝试了多次但没有成功。如果您找到解决方案,请告诉我。干杯!

解决方法

我发现了导致无法创建表的问题。我的应用程序类(具有main(String [] args)方法)位于其他程序包中。我重构了软件包,问题解决了。