Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
use separate context param elements for both context params
  • Loading branch information
jstrachan committed Apr 11, 2013
1 parent 5672582 commit 7b98e10
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions hawtio-default/src/main/webapp/WEB-INF/web.xml
Expand Up @@ -44,6 +44,8 @@
<context-param>
<param-name>blueprintProperties</param-name>
<param-value>blueprint.properties</param-value>
</context-param>
<context-param>
<param-name>blueprintLocation</param-name>
<param-value>OSGI-INF/blueprint/blueprint.xml</param-value>
</context-param>
Expand Down
8 changes: 6 additions & 2 deletions sample/src/main/webapp/WEB-INF/web.xml
Expand Up @@ -32,8 +32,12 @@
</listener>

<context-param>
<param-name>blueprintProperties</param-name>
<param-value>blueprint.properties</param-value>
<param-name>blueprintProperties</param-name>
<param-value>blueprint.properties</param-value>
</context-param>
<context-param>
<param-name>blueprintLocation</param-name>
<param-value>OSGI-INF/blueprint/blueprint.xml</param-value>
</context-param>
</web-app>

0 comments on commit 7b98e10

Please sign in to comment.