Skip to content

Instantly share code, notes, and snippets.

@jogaco
Created May 21, 2017 18:18
Show Gist options
  • Save jogaco/dab8138a2513c57f03ab5ac7154aee96 to your computer and use it in GitHub Desktop.
Save jogaco/dab8138a2513c57f03ab5ac7154aee96 to your computer and use it in GitHub Desktop.
Spring Boot Tutorial: hibernate-maven-plugin created tables and schema file
--- hibernate-maven-plugin:2.0.0:drop (default) @ spring-boot-mysql ---
[INFO] HHH000318: Could not find any META-INF/persistence.xml file in the classpath
[INFO] Found no META-INF/persistence.xml.
[INFO] Gathered hibernate-configuration (turn on debugging for details):
[INFO] hibernate.connection.username = username
[INFO] hibernate.connection.password = password
[INFO] hibernate.dialect = org.hibernate.dialect.MySQL5InnoDBDialect
[INFO] hibernate.connection.url = jdbc:mysql://localhost/game_manager?createDatabaseIfNotExist=true&useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
[INFO] hibernate.hbm2dll.create_namespaces = false
[INFO] hibernate.connection.driver_class = com.mysql.jdbc.Driver
[INFO] HHH000412: Hibernate Core {5.0.2.Final}
[INFO] HHH000206: hibernate.properties not found
[INFO] HHH000021: Bytecode provider name : javassist
[INFO] Adding /home/java-projects/spr-boot/target/classes to the list of roots to scan...
[INFO] Adding dependencies from scope compile to the list of roots to scan
[INFO] Adding dependencies from scope org.springframework.boot:spring-boot-starter-data-jpa:jar:1.5.3.RELEASE to the list of roots to scan
[INFO] Adding annotated resource: com.operatornew.gamemanager.domain.Game
[INFO] HCANN000001: Hibernate Commons Annotations {5.0.0.Final}
[INFO] HHH000400: Using dialect: org.hibernate.dialect.MySQL5InnoDBDialect
[INFO] Envers integration enabled? : true
[INFO] HHH000227: Running hbm2ddl schema export
[INFO] HHH000230: Schema export complete
[INFO]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment