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
/* | |
* Please note for this to work you need to add the corresponding dependencies. | |
* In this case, we use https://github.com/brettwooldridge/HikariCP as connection pool | |
* and an embedded derby database. | |
*/ | |
@Produces | |
public DataSource exposeDataSource() { | |
Properties props = new Properties(); | |
props.setProperty("dataSource.databaseName", "mydb"); | |
props.put("dataSource.logWriter", new PrintWriter(System.out)); |