I configured pooling in Spark Java with HikariCP for MariaDB. I did not use Jetty and used Apache Tomcat instead. Here are some code snippets:
src/main/resources/mysql-connection.properties
dataSourceClassName=com.mysql.jdbc.jdbc2.optional.MysqlDataSource
dataSource.url=<url>
dataSource.user=<user>
dataSource.password=<password>
dataSource.cachePrepStmts=true
dataSource.prepStmtCacheSize=100
dataSource.prepStmtCacheSqlLimit=2048
dataSource.useServerPrepStmts=true
maximumPoolSize=10
com/example/app/DataSourceFactory.java
public final class DataSourceFactory {
static final Logger LOG = LoggerFactory.getLogger(DataSourceFactory.class);
private static DataSource mySQLDataSource;
private DataSourceFactory() {
}
//returns javax.sql.DataSource
public static DataSource getMySQLDataSource() {
if (mySQLDataSource == null) {
synchronized (DataSourceFactory.class) {
if (mySQLDataSource == null) {
mySQLDataSource = getDataSource("mysql-connection.properties");
}
}
}
return mySQLDataSource;
}
// method to create the DataSource based on configuration
private static DataSource getDataSource(String configurationProperties) {
Properties conf = new Properties();
try {
conf.load(DataSourceFactory.class.getClassLoader().getResourceAsStream(configurationProperties));
} catch (IOException e) {
LOG.error("Can't locate database configuration", e);
}
HikariConfig config = new HikariConfig(conf);
HikariDataSource dataSource = new HikariDataSource(config);
LOG.info("DataSource[" + configurationProperties + "] created " + dataSource);
return dataSource;
}
}
WebContent/WEB-INF/web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1">
<display-name>My Spark App</display-name>
<filter>
<filter-name>SparkFilter</filter-name>
<filter-class>spark.servlet.SparkFilter</filter-class>
<init-param>
<param-name>applicationClass</param-name>
<param-value>com.example.app.MySparkApp</param-value>
<!-- MySparkApp implements spark.servlet.SparkApplication -->
</init-param>
</filter>
<filter-mapping>
<filter-name>SparkFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<listener>
<listener-class>com.example.app.AppServletContextListener</listener-class>
</listener>
</web-app>
com/example/app/AppServletContextListener.java
public class AppServletContextListener implements ServletContextListener {
static final Logger LOG = LoggerFactory.getLogger(AppServletContextListener.class);
@Override
public void contextInitialized(ServletContextEvent arg0) {
LOG.info("contextInitialized...");
}
@Override
public void contextDestroyed(ServletContextEvent arg0) {
LOG.info("contextDestroyed...");
try {
if (DataSourceFactory.getMySQLDataSource() != null) {
DataSourceFactory.getMySQLDataSource().unwrap(HikariDataSource.class).close();
}
} catch (SQLException e) {
LOG.error("Problem closing HikariCP pool", e);
}
}
}
And finally you can obtain a pooled java.sql.Connection by calling DataSourceFactory.getMySQLDataSource().getConnection()
these posts
) and commit, it is providing flexibility for threads being used by embedded jetty usingJettyServerFactory
. It is not about solving the connection pooling thing. – Bullfight