Properly shutdown embedded HSQLDB database on exit
This commit is contained in:
@@ -2,6 +2,7 @@ package org.airsonic.player;
|
|||||||
|
|
||||||
import net.sf.ehcache.constructs.web.ShutdownListener;
|
import net.sf.ehcache.constructs.web.ShutdownListener;
|
||||||
import org.airsonic.player.filter.*;
|
import org.airsonic.player.filter.*;
|
||||||
|
import org.airsonic.player.spring.TerminateBean;
|
||||||
import org.directwebremoting.servlet.DwrServlet;
|
import org.directwebremoting.servlet.DwrServlet;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
@@ -56,6 +57,11 @@ public class Application extends SpringBootServletInitializer implements Embedde
|
|||||||
return servlet;
|
return servlet;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public TerminateBean terminateBean() {
|
||||||
|
return new TerminateBean();
|
||||||
|
}
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
public ServletRegistrationBean cxfServletBean() {
|
public ServletRegistrationBean cxfServletBean() {
|
||||||
return new ServletRegistrationBean(new org.apache.cxf.transport.servlet.CXFServlet(), "/ws/*");
|
return new ServletRegistrationBean(new org.apache.cxf.transport.servlet.CXFServlet(), "/ws/*");
|
||||||
|
|||||||
@@ -0,0 +1,55 @@
|
|||||||
|
package org.airsonic.player.spring;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.context.ApplicationContext;
|
||||||
|
import org.springframework.jdbc.core.JdbcTemplate;
|
||||||
|
import org.springframework.jdbc.datasource.DataSourceUtils;
|
||||||
|
|
||||||
|
import javax.annotation.PreDestroy;
|
||||||
|
import javax.sql.DataSource;
|
||||||
|
|
||||||
|
import java.sql.Connection;
|
||||||
|
import java.sql.DatabaseMetaData;
|
||||||
|
import java.sql.SQLException;
|
||||||
|
|
||||||
|
public class TerminateBean {
|
||||||
|
|
||||||
|
private static final Logger LOG = LoggerFactory.getLogger(TerminateBean.class);
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private ApplicationContext context;
|
||||||
|
|
||||||
|
@PreDestroy
|
||||||
|
public void onDestroy() {
|
||||||
|
Connection conn = null;
|
||||||
|
try {
|
||||||
|
// Connect to the database and retrieve the db name and version
|
||||||
|
JdbcTemplate jdbcTemplate = new JdbcTemplate(this.context.getBean(DataSource.class));
|
||||||
|
conn = DataSourceUtils.getConnection(jdbcTemplate.getDataSource());
|
||||||
|
DatabaseMetaData meta = conn.getMetaData();
|
||||||
|
String productName = meta.getDatabaseProductName();
|
||||||
|
int productVersion = meta.getDatabaseMajorVersion();
|
||||||
|
|
||||||
|
// Properly shutdown HSQLDB databases
|
||||||
|
if (productName.equals("HSQL Database Engine") && (productVersion == 1 || productVersion == 2)) {
|
||||||
|
LOG.info("Database shutdown in progress...");
|
||||||
|
conn.setAutoCommit(true);
|
||||||
|
jdbcTemplate.execute("SHUTDOWN");
|
||||||
|
LOG.info("Database shutdown complete.");
|
||||||
|
}
|
||||||
|
|
||||||
|
} catch (SQLException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
|
||||||
|
} finally {
|
||||||
|
try {
|
||||||
|
if(conn != null)
|
||||||
|
conn.close();
|
||||||
|
} catch(Exception ex) {
|
||||||
|
ex.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user