2 * Copyright 2017-2018 ZTE Corporation.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.onap.holmes.engine;
18 import io.dropwizard.setup.Environment;
19 import lombok.extern.slf4j.Slf4j;
20 import org.onap.holmes.common.config.MicroServiceConfig;
21 import org.onap.holmes.common.dropwizard.ioc.bundle.IOCApplication;
22 import org.onap.holmes.common.utils.transactionid.TransactionIdFilter;
23 import org.onap.holmes.engine.dcae.DcaeConfigurationPolling;
25 import javax.servlet.DispatcherType;
26 import java.util.EnumSet;
27 import java.util.concurrent.Executors;
28 import java.util.concurrent.ScheduledExecutorService;
29 import java.util.concurrent.TimeUnit;
32 public class EngineDActiveApp extends IOCApplication<EngineDAppConfig> {
34 public static void main(String[] args) throws Exception {
35 new EngineDActiveApp().run(args);
39 public void run(EngineDAppConfig configuration, Environment environment) throws Exception {
40 super.run(configuration, environment);
42 if (!"1".equals(System.getenv("TESTING"))) {
43 ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor();
44 service.scheduleAtFixedRate(
45 new DcaeConfigurationPolling(MicroServiceConfig.getEnv(MicroServiceConfig.HOSTNAME)), 0,
46 DcaeConfigurationPolling.POLLING_PERIOD, TimeUnit.MILLISECONDS);
49 environment.servlets().addFilter("logFilter", new TransactionIdFilter()).addMappingForUrlPatterns(EnumSet
50 .allOf(DispatcherType.class), true, "/*");