Skip to content

Instantly share code, notes, and snippets.

@nikhil3000
Created June 23, 2020 07:23
Show Gist options
  • Save nikhil3000/643f2933322892792f41175425b9d5ba to your computer and use it in GitHub Desktop.
Save nikhil3000/643f2933322892792f41175425b9d5ba to your computer and use it in GitHub Desktop.
@Valid
@NotNull
private DataSourceFactory database = new DataSourceFactory();
@JsonProperty("database")
public void setDataSourceFactory(DataSourceFactory factory) {
this.database = factory;
}
@JsonProperty("database")
public DataSourceFactory getDataSourceFactory() {
return database;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment