Unrecognized Field in Dropwizard YAML File
问题 I'm getting the following error when launching a Dropwizard application that uses a database connection to MySQL: app.yaml has an error: * Unrecognized field at: database Did you mean?: - metrics - instanceId - logging - server - statsConfig [12 more] At the end of my Dropwizard configuration file, I have the following: database: driverClass: com.mysql.jdbc.Driver user: ${MYSQL_USERNAME} password: ${MYSQL_PASSWORD} url: ${MYSQL_URL} And in my configuration class, I have the following: @Valid(