All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.struts2.convention.ClasspathConfigurationProvider Maven / Gradle / Ivy

There is a newer version: 6.6.1
Show newest version
/*
 * 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.struts2.convention;

import com.opensymphony.xwork2.config.Configuration;
import com.opensymphony.xwork2.config.ConfigurationException;
import com.opensymphony.xwork2.config.ConfigurationProvider;
import com.opensymphony.xwork2.inject.Container;
import com.opensymphony.xwork2.inject.ContainerBuilder;
import com.opensymphony.xwork2.inject.Inject;
import com.opensymphony.xwork2.util.location.LocatableProperties;
import org.apache.commons.lang3.BooleanUtils;
import org.apache.struts2.StrutsConstants;
import org.apache.struts2.dispatcher.Dispatcher;
import org.apache.struts2.dispatcher.DispatcherListener;

/**
 * 

* Xwork will only reload configurations, if one ContainerProvider needs reloading, that's all this class does *

*/ public class ClasspathConfigurationProvider implements ConfigurationProvider, DispatcherListener { private ActionConfigBuilder actionConfigBuilder; private boolean devMode; private boolean reload; private boolean listeningToDispatcher; @Inject public ClasspathConfigurationProvider(Container container) { this.actionConfigBuilder = container.getInstance(ActionConfigBuilder.class, container.getInstance(String.class, ConventionConstants.CONVENTION_ACTION_CONFIG_BUILDER)); } @Inject(StrutsConstants.STRUTS_DEVMODE) public void setDevMode(String mode) { this.devMode = BooleanUtils.toBoolean(mode); } @Inject(ConventionConstants.CONVENTION_CLASSES_RELOAD) public void setReload(String reload) { this.reload = BooleanUtils.toBoolean(reload); } /** * Not used. */ public void destroy() { if (this.listeningToDispatcher) { Dispatcher.removeDispatcherListener(this); } actionConfigBuilder.destroy(); } /** * Not used. * * @param configuration configuration */ public void init(Configuration configuration) { if (devMode && reload && !listeningToDispatcher) { //this is the only way I found to be able to get added to to ConfigurationProvider list //listening to events in Dispatcher listeningToDispatcher = true; Dispatcher.addDispatcherListener(this); } } /** * Does nothing. * * @param containerBuilder container builder * @param locatableProperties locatable properties * * @throws ConfigurationException in case of configuration errors */ public void register(ContainerBuilder containerBuilder, LocatableProperties locatableProperties) throws ConfigurationException { } /** * Loads the packages using the {@link ActionConfigBuilder}. * * @throws ConfigurationException in case of configuration errors */ public void loadPackages() throws ConfigurationException { } /** * @return true if devMode, reload and actionConfigBuilder.needsReload() */ public boolean needsReload() { return devMode && reload && actionConfigBuilder.needsReload(); } public void dispatcherInitialized(Dispatcher du) { du.getConfigurationManager().addContainerProvider(this); } public void dispatcherDestroyed(Dispatcher du) { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy