From 593c03b88c20eaba676b39d9e33b28cd35b7f9ab Mon Sep 17 00:00:00 2001 From: brettwooldridge Date: Thu, 16 Jan 2014 16:34:17 +0900 Subject: [PATCH] Fixed error in example code. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eae0a171..6b92506c 100644 --- a/README.md +++ b/README.md @@ -220,7 +220,7 @@ dataSource.serverName=localhost or ``java.util.Properties`` based: ```java Properties props = new Properties(); -props.setProperty("maxPoolSize", 100); +props.setProperty("maximumPoolSize", 100); props.setProperty("dataSourceClassName", "org.postgresql.ds.PGSimpleDataSource"); props.setProperty("dataSource.username", "test"); props.setProperty("dataSource.password", "test");