Added another context configuration file. Made the datasource config property more obvious.
This commit is contained in:
parent
fb722a898e
commit
a83d8e4dd8
1
resources/main/WEB-INF/classes/context.properties
Normal file
1
resources/main/WEB-INF/classes/context.properties
Normal file
@ -0,0 +1 @@
|
|||||||
|
nlsongs.media.baseUrl=https://s3.amazonaws.com/new-life-austin-songs/public
|
@ -4,10 +4,15 @@
|
|||||||
<!-- PRODUCTION -->
|
<!-- PRODUCTION -->
|
||||||
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
|
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
|
||||||
<context-param>
|
<context-param>
|
||||||
<param-name>context.config.file</param-name>
|
<param-name>datasource.config.file</param-name>
|
||||||
<param-value>/datasource.properties</param-value>
|
<param-value>/datasource.properties</param-value>
|
||||||
</context-param>
|
</context-param>
|
||||||
|
|
||||||
|
<context-param>
|
||||||
|
<param-name>context.config.file</param-name>
|
||||||
|
<param-value>/context.properties</param-value>
|
||||||
|
</context-param>
|
||||||
|
|
||||||
<listener>
|
<listener>
|
||||||
<listener-class>com.jdbernard.nlsongs.servlet.NLSongsContextListener</listener-class>
|
<listener-class>com.jdbernard.nlsongs.servlet.NLSongsContextListener</listener-class>
|
||||||
</listener>
|
</listener>
|
||||||
|
1
resources/test/WEB-INF/classes/context.properties
Normal file
1
resources/test/WEB-INF/classes/context.properties
Normal file
@ -0,0 +1 @@
|
|||||||
|
nlsongs.media.baseUrl=https://s3.amazonaws.com/new-life-austin-songs/public
|
@ -1,10 +1,16 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!-- This web.xml file is not required when using Servlet 3.0 container,
|
<!-- This web.xml file is not required when using Servlet 3.0 container,
|
||||||
see implementation details http://jersey.java.net/nonav/documentation/latest/jax-rs.html -->
|
see implementation details http://jersey.java.net/nonav/documentation/latest/jax-rs.html -->
|
||||||
|
<!-- PRODUCTION -->
|
||||||
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
|
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
|
||||||
|
<context-param>
|
||||||
|
<param-name>datasource.config.file</param-name>
|
||||||
|
<param-value>/datasource.properties</param-value>
|
||||||
|
</context-param>
|
||||||
|
|
||||||
<context-param>
|
<context-param>
|
||||||
<param-name>context.config.file</param-name>
|
<param-name>context.config.file</param-name>
|
||||||
<param-value>/datasource.test.properties</param-value>
|
<param-value>/context.properties</param-value>
|
||||||
</context-param>
|
</context-param>
|
||||||
|
|
||||||
<listener>
|
<listener>
|
||||||
|
@ -8,9 +8,10 @@ public class NLSongsContext {
|
|||||||
|
|
||||||
public static NLSongsDB songsDB
|
public static NLSongsDB songsDB
|
||||||
|
|
||||||
public static String mediaUrlBase
|
public static String mediaBaseUrl
|
||||||
|
|
||||||
public static String makeUrl(Service service, Song song) {
|
public static String makeUrl(Service service, Song song) {
|
||||||
return mediaUrlBase + service.@date.toString('yyyy-MM-dd') +
|
return mediaBaseUrl + '/' + service.@date.toString('yyyy-MM-dd') + '_' +
|
||||||
'/' + song.name.replaceAll(/\s/, '') + '.ogg' }
|
service.serviceType.name().toLowerCase() + '_' +
|
||||||
|
song.name.replaceAll(/[\s'"\\\/\?!]/, '') + '.ogg' }
|
||||||
}
|
}
|
||||||
|
@ -14,9 +14,15 @@ public final class NLSongsContextListener implements ServletContextListener {
|
|||||||
public void contextInitialized(ServletContextEvent event) {
|
public void contextInitialized(ServletContextEvent event) {
|
||||||
def context = event.servletContext
|
def context = event.servletContext
|
||||||
|
|
||||||
|
// Load the context configuration.
|
||||||
|
Properties props = new Properties()
|
||||||
|
NLSongsContextListener.getResourceAsStream(
|
||||||
|
context.getInitParameter('context.config.file')).withStream { is ->
|
||||||
|
props.load(is) }
|
||||||
|
|
||||||
// Create the pooled data source
|
// Create the pooled data source
|
||||||
HikariConfig hcfg = new HikariConfig(
|
HikariConfig hcfg = new HikariConfig(
|
||||||
context.getInitParameter("context.config.file"))
|
context.getInitParameter('datasource.config.file'))
|
||||||
|
|
||||||
HikariDataSource hds = new HikariDataSource(hcfg)
|
HikariDataSource hds = new HikariDataSource(hcfg)
|
||||||
|
|
||||||
@ -24,7 +30,8 @@ public final class NLSongsContextListener implements ServletContextListener {
|
|||||||
NLSongsDB songsDB = new NLSongsDB(hds)
|
NLSongsDB songsDB = new NLSongsDB(hds)
|
||||||
|
|
||||||
context.setAttribute('songsDB', songsDB)
|
context.setAttribute('songsDB', songsDB)
|
||||||
NLSongsContext.songsDB = songsDB }
|
NLSongsContext.songsDB = songsDB
|
||||||
|
NLSongsContext.mediaBaseUrl = props["nlsongs.media.baseUrl"] }
|
||||||
|
|
||||||
public void contextDestroyed(ServletContextEvent event) {
|
public void contextDestroyed(ServletContextEvent event) {
|
||||||
def context = event.servletContext
|
def context = event.servletContext
|
||||||
|
@ -85,7 +85,7 @@ public class NLSongsDBTest {
|
|||||||
|
|
||||||
// Create Hikari datasource
|
// Create Hikari datasource
|
||||||
HikariConfig hcfg = new HikariConfig(
|
HikariConfig hcfg = new HikariConfig(
|
||||||
"resources/test/WEB-INF/classes/datasource.test.properties")
|
"resources/test/WEB-INF/classes/datasource.properties")
|
||||||
|
|
||||||
HikariDataSource dataSource = new HikariDataSource(hcfg)
|
HikariDataSource dataSource = new HikariDataSource(hcfg)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user