Created
November 6, 2015 12:51
-
-
Save javaeeeee/58a612dfd694bddb3ee5 to your computer and use it in GitHub Desktop.
Database configuration for a Dropwizard project
This file contains hidden or 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
| # Database settings. | |
| database: | |
| # the name of the JDBC driver, mysql in our case | |
| driverClass: com.mysql.jdbc.Driver | |
| # the username | |
| user: javaeeeee | |
| # the password | |
| password: 1 | |
| # the JDBC URL; the database is called DWGettingStarted | |
| url: jdbc:mysql://localhost:3306/DWGettingStarted |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment