]> source.dussan.org Git - archiva.git/blob
82113ed76b0c872314f75adde91d07546af81c2a
[archiva.git] /
1 package org.apache.maven.archiva.web.startup;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import javax.servlet.ServletContextEvent;
23 import javax.servlet.ServletContextListener;
24 import javax.servlet.ServletException;
25
26 import org.apache.maven.archiva.common.ArchivaException;
27 import org.apache.maven.archiva.scheduled.ArchivaTaskScheduler;
28 import org.codehaus.plexus.personality.plexus.lifecycle.phase.Initializable;
29 import org.codehaus.plexus.personality.plexus.lifecycle.phase.InitializationException;
30 import org.codehaus.plexus.spring.PlexusToSpringUtils;
31 import org.codehaus.plexus.taskqueue.execution.TaskQueueExecutor;
32 import org.slf4j.Logger;
33 import org.slf4j.LoggerFactory;
34 import org.springframework.web.context.WebApplicationContext;
35 import org.springframework.web.context.support.WebApplicationContextUtils;
36
37 /**
38  * ArchivaStartup - the startup of all archiva features in a deterministic order. 
39  *
40  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
41  * @version $Id$
42  */
43 public class ArchivaStartup
44     implements ServletContextListener
45 {
46     public void contextDestroyed(ServletContextEvent arg0) {
47     }
48
49     public void contextInitialized(ServletContextEvent arg0) {
50         WebApplicationContext wac =  WebApplicationContextUtils.getRequiredWebApplicationContext(arg0.getServletContext());
51         
52         SecuritySynchronization securitySync = (SecuritySynchronization) wac.getBean(PlexusToSpringUtils.buildSpringId(SecuritySynchronization.class));
53         ResolverFactoryInit resolverFactory = (ResolverFactoryInit) wac.getBean(PlexusToSpringUtils.buildSpringId(ResolverFactoryInit.class));
54         ArchivaTaskScheduler taskScheduler = (ArchivaTaskScheduler) wac.getBean(PlexusToSpringUtils.buildSpringId(ArchivaTaskScheduler.class));
55         TaskQueueExecutor databaseUpdateQueue = (TaskQueueExecutor) wac.getBean(PlexusToSpringUtils.buildSpringId(TaskQueueExecutor.class, "database-update"));
56         TaskQueueExecutor repositoryScanningQueue = (TaskQueueExecutor) wac.getBean(PlexusToSpringUtils.buildSpringId(TaskQueueExecutor.class, "repository-scanning"));
57         Banner banner = (Banner) wac.getBean(PlexusToSpringUtils.buildSpringId(Banner.class));
58
59         try
60         {
61             securitySync.startup();
62             resolverFactory.startup();
63             taskScheduler.startup();
64             banner.display();
65         }
66         catch ( ArchivaException e )
67         {
68             throw new RuntimeException( "Unable to properly startup archiva: " + e.getMessage(), e );
69         }
70     }
71
72 }