1 /*
2 * $Id: CompleteAutoloadTilesInitializer.java 892369 2009-12-18 20:21:36Z apetrelli $
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 package org.apache.tiles.extras.complete;
23
24 import javax.servlet.ServletContext;
25
26 import org.apache.tiles.factory.AbstractTilesContainerFactory;
27 import org.apache.tiles.request.ApplicationContext;
28 import org.apache.tiles.request.servlet.wildcard.WildcardServletApplicationContext;
29 import org.apache.tiles.startup.AbstractTilesInitializer;
30
31 /**
32 * This initializer uses {@link WildcardServletApplicationContext} to
33 * retrieve resources using Ant-style patterns and creates a
34 * {@link CompleteAutoloadTilesContainerFactory} to load all new features of
35 * Tiles at once.
36 *
37 * @version $Rev: 892369 $ $Date: 2009-12-19 07:21:36 +1100 (Sat, 19 Dec 2009) $
38 * @since 2.2.0
39 */
40 public class CompleteAutoloadTilesInitializer extends AbstractTilesInitializer {
41
42 /** {@inheritDoc} */
43 @Override
44 protected ApplicationContext createTilesApplicationContext(
45 ApplicationContext preliminaryContext) {
46 return new WildcardServletApplicationContext(
47 (ServletContext) preliminaryContext.getContext());
48 }
49
50 /** {@inheritDoc} */
51 @Override
52 protected AbstractTilesContainerFactory createContainerFactory(
53 ApplicationContext context) {
54 return new CompleteAutoloadTilesContainerFactory();
55 }
56 }