Skip to content
This repository has been archived by the owner on Apr 5, 2019. It is now read-only.

Replace web.xml with GreenhouseWebAppInitializer #41

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 20 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,9 @@

<!-- Servlet -->
<dependency>
<groupId>javax.servlet</groupId>
<groupId>org.mortbay.jetty</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<version>3.0.20100224</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand All @@ -247,11 +247,23 @@
<groupId>javax.servlet.jsp.jstl</groupId>
<artifactId>jstl-api</artifactId>
<version>1.2</version>
</dependency>
<exclusions>
<exclusion>
<artifactId>servlet-api</artifactId>
<groupId>javax.servlet</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>jstl-impl</artifactId>
<version>1.2</version>
<exclusions>
<exclusion>
<artifactId>servlet-api</artifactId>
<groupId>javax.servlet</groupId>
</exclusion>
</exclusions>
</dependency>

<!-- Apache Tiles -->
Expand Down Expand Up @@ -483,7 +495,10 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
</plugin>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
<!-- Tomcat 7 Plugin -->
<plugin>
<groupId>com.googlecode.t7mp</groupId>
Expand Down Expand Up @@ -594,5 +609,4 @@
<url>file://${user.home}/local-maven-publish-repository</url>
</snapshotRepository>
</distributionManagement>

</project>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
/*
* Copyright 2002-2011 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.springsource.greenhouse.config;

import java.util.Set;

import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.ServletRegistration;

import org.springframework.web.WebApplicationInitializer;
import org.springframework.web.context.ContextLoaderListener;
import org.springframework.web.context.support.AnnotationConfigWebApplicationContext;
import org.springframework.web.context.support.GenericWebApplicationContext;
import org.springframework.web.filter.DelegatingFilterProxy;
import org.springframework.web.filter.HiddenHttpMethodFilter;
import org.springframework.web.flash.FlashMapFilter;
import org.springframework.web.servlet.DispatcherServlet;

/**
* Code-based alternative to web.xml for use within Servlet 3.0+ environments. See
* {@link WebApplicationInitializer} Javadoc for complete details.
*
* @author Chris Beams
*/
public class GreenhouseWebAppInitializer implements WebApplicationInitializer {

/**
* Register and configure all Servlet container components necessary to power the
* Greenhouse web application.
*/
@Override
public void onStartup(ServletContext sc) throws ServletException {
System.out.println("GreenhouseWebAppInitializer.onStartup()");

// Create the 'root' Spring application context
AnnotationConfigWebApplicationContext root = new AnnotationConfigWebApplicationContext();
root.scan("com.springsource.greenhouse.config");
root.getEnvironment().setDefaultProfiles("embedded");

// Manages the lifecycle of the root application context
sc.addListener(new ContextLoaderListener(root));

// Allows attributes to be accessed on the next request
sc.addFilter("flashMapFilter", FlashMapFilter.class)
.addMappingForUrlPatterns(null, false, "/*");

// Enables support for DELETE and PUT request methods with web browser clients
sc.addFilter("hiddenHttpMethodFilter", HiddenHttpMethodFilter.class)
.addMappingForUrlPatterns(null, false, "/*");

// Secures the application
sc.addFilter("securityFilter", new DelegatingFilterProxy("springSecurityFilterChain"))
.addMappingForUrlPatterns(null, false, "/*");

// Handles requests into the application
ServletRegistration.Dynamic appServlet =
sc.addServlet("appServlet", new DispatcherServlet(new GenericWebApplicationContext()));
appServlet.setLoadOnStartup(1);
Set<String> mappingConflicts = appServlet.addMapping("/");
if (!mappingConflicts.isEmpty()) {
throw new IllegalStateException("'appServlet' could not be mapped to '/' due " +
"to an existing mapping. This is a known issue under Tomcat versions " +
"<= 7.0.14; see https://issues.apache.org/bugzilla/show_bug.cgi?id=51278");
}

// H2 Database Console for managing the app's database
ServletRegistration.Dynamic h2Servlet =
sc.addServlet("H2Console", org.h2.server.web.WebServlet.class);
h2Servlet.setInitParameter("webAllowOthers", "true");
h2Servlet.setLoadOnStartup(2);
h2Servlet.addMapping("/admin/h2/*");
}

}
99 changes: 0 additions & 99 deletions src/main/webapp/WEB-INF/web.xml

This file was deleted.