Springboot+Jpa+hibernate无法生成表的解决方法

一.使用工具

IDEA 2018 + Springboot2.0 + Jpa + Hibernate5.3.7 + MySQL5.6

二.问题描述与解决

初学Spring Boot今天遇到一个问题,在使用Jpa的方式创建数据库表的时候发现无论如何创建不成功,百度了一下似乎很多人是mysql-connector-java和@Entity、@Component的问题,针对我的问题也没有什么好的解决办法,解决方法直接看第3条!
下面直接贴控制台信息/源码和解决办法。

1.pom.xml 主要内容

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.0.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>cn.sunny</groupId>
    <artifactId>shiro</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>shiro

你可能感兴趣的:(学习实践,JAVA,Springboot,MySQL)