2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Modifications Copyright (c) 2019 Samsung
8 * ================================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
13 * http://www.apache.org/licenses/LICENSE-2.0
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END=========================================================
23 package org.onap.so.bpmn.infrastructure;
25 import java.util.List;
26 import java.util.concurrent.Executor;
27 import org.camunda.bpm.application.PostDeploy;
28 import org.camunda.bpm.application.PreUndeploy;
29 import org.camunda.bpm.application.ProcessApplicationInfo;
30 import org.camunda.bpm.engine.ProcessEngine;
31 import org.onap.so.bpmn.common.DefaultToShortClassNameBeanNameGenerator;
32 import org.onap.so.logging.jaxrs.filter.MDCTaskDecorator;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
35 import org.springframework.beans.factory.annotation.Value;
36 import org.springframework.boot.SpringApplication;
37 import org.springframework.boot.autoconfigure.SpringBootApplication;
38 import org.springframework.context.annotation.Bean;
39 import org.springframework.context.annotation.ComponentScan;
40 import org.springframework.context.annotation.ComponentScan.Filter;
41 import org.springframework.context.annotation.FilterType;
42 import org.springframework.context.annotation.Primary;
43 import org.springframework.scheduling.annotation.EnableAsync;
44 import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
51 @SpringBootApplication
53 @ComponentScan(basePackages = {"org.onap"}, nameGenerator = DefaultToShortClassNameBeanNameGenerator.class,
54 excludeFilters = {@Filter(type = FilterType.ANNOTATION, classes = SpringBootApplication.class)})
55 public class MSOInfrastructureApplication {
57 private static final Logger logger = LoggerFactory.getLogger(MSOInfrastructureApplication.class);
59 @Value("${mso.async.core-pool-size}")
60 private int corePoolSize;
62 @Value("${mso.async.max-pool-size}")
63 private int maxPoolSize;
65 @Value("${mso.async.queue-capacity}")
66 private int queueCapacity;
68 private static final String LOGS_DIR = "logs_dir";
71 private static void setLogsDir() {
72 if (System.getProperty(LOGS_DIR) == null) {
73 System.getProperties().setProperty(LOGS_DIR, "./logs/bpmn/");
77 public static void main(String... args) {
78 SpringApplication.run(MSOInfrastructureApplication.class, args);
79 System.getProperties().setProperty("mso.config.path", ".");
84 public void postDeploy(ProcessEngine processEngineInstance) {}
87 public void cleanup(ProcessEngine processEngine, ProcessApplicationInfo processApplicationInfo,
88 List<ProcessEngine> processEngines) {}
92 public Executor asyncExecutor() {
93 ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
94 executor.setTaskDecorator(new MDCTaskDecorator());
95 executor.setCorePoolSize(corePoolSize);
96 executor.setMaxPoolSize(maxPoolSize);
97 executor.setQueueCapacity(queueCapacity);
98 executor.setThreadNamePrefix("Camunda-");
99 executor.initialize();