Last active
May 21, 2017 16:25
-
-
Save jogaco/2439c68913ac3b0a6761ef7d900334cf to your computer and use it in GitHub Desktop.
Spring Boot tutorial: pom.xml fragment: schema properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | |
<java.version>1.8</java.version> | |
<db.name>game_manager</db.name> | |
<jdbc.driverClassName>com.mysql.jdbc.Driver</jdbc.driverClassName> | |
<jdbc.url>jdbc:mysql://localhost/${db.name}?createDatabaseIfNotExist=true&useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC</jdbc.url> | |
<jdbc.username>username</jdbc.username> | |
<jdbc.password>password</jdbc.password> | |
</properties> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment