You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by cm...@apache.org on 2010/10/21 12:19:51 UTC

svn commit: r1025926 - in /servicemix/smx4/features/trunk/examples/web/src/main/java/org/apache/servicemix/web: ./ WebAppListener.java

Author: cmoulliard
Date: Thu Oct 21 10:19:51 2010
New Revision: 1025926

URL: http://svn.apache.org/viewvc?rev=1025926&view=rev
Log:
SMX4-456: Generate WAR file with ServiceMix4

Added:
    servicemix/smx4/features/trunk/examples/web/src/main/java/org/apache/servicemix/web/
    servicemix/smx4/features/trunk/examples/web/src/main/java/org/apache/servicemix/web/WebAppListener.java

Added: servicemix/smx4/features/trunk/examples/web/src/main/java/org/apache/servicemix/web/WebAppListener.java
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/web/src/main/java/org/apache/servicemix/web/WebAppListener.java?rev=1025926&view=auto
==============================================================================
--- servicemix/smx4/features/trunk/examples/web/src/main/java/org/apache/servicemix/web/WebAppListener.java (added)
+++ servicemix/smx4/features/trunk/examples/web/src/main/java/org/apache/servicemix/web/WebAppListener.java Thu Oct 21 10:19:51 2010
@@ -0,0 +1,59 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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 org.apache.servicemix.web;
+
+import java.io.File;
+
+import javax.servlet.ServletContextEvent;
+import javax.servlet.ServletContextListener;
+
+import org.apache.karaf.main.Main;
+import org.apache.karaf.main.Bootstrap;
+
+public class WebAppListener implements ServletContextListener {
+	
+	private Main main;
+	
+	public void contextInitialized(ServletContextEvent sce) {
+		try {
+			System.err.println("contextInitialized");
+			String root = new File(sce.getServletContext().getRealPath("/") + "/WEB-INF/servicemix").getAbsolutePath();
+			System.err.println("Root: " + root);
+			System.setProperty("karaf.home", root);
+			System.setProperty("karaf.base", root);
+			System.setProperty("karaf.startLocalConsole", "false");
+			System.setProperty("karaf.startRemoteShell", "true");
+			main = new Main(new String[0]); //Bootstrap.main(new String[0]);
+			main.launch();
+		} catch (Exception e) {
+			main = null;
+			e.printStackTrace();
+		}
+	}
+
+	public void contextDestroyed(ServletContextEvent sce) {
+		try {
+			System.err.println("contextDestroyed");
+			if (main != null) {
+				main.destroy(false);
+			}
+		} catch (Exception e) {
+			e.printStackTrace();
+		}
+	}
+
+}