Fix mongodb errors on application startup
[dcaegen2/analytics/tca-gen2.git] / dcae-analytics / dcae-analytics-web / src / main / java / org / onap / dcae / analytics / web / config / MessageStoreConfig.java
1 /*
2  * ================================================================================
3  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
4  * Copyright (c) 2021 Nokia Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  * ============LICENSE_END=========================================================
18  *
19  */
20
21 package org.onap.dcae.analytics.web.config;
22
23 import org.onap.dcae.analytics.model.AnalyticsProfile;
24 import org.springframework.context.annotation.Bean;
25 import org.springframework.context.annotation.Configuration;
26 import org.springframework.context.annotation.Profile;
27 import org.springframework.data.mongodb.MongoDatabaseFactory;
28 import org.springframework.integration.mongodb.store.MongoDbChannelMessageStore;
29 import org.springframework.integration.store.BasicMessageGroupStore;
30 import org.springframework.integration.store.SimpleMessageStore;
31
32 /**
33  * @author Rajiv Singla
34  */
35 @Configuration
36 @Profile(AnalyticsProfile.DMAAP_PROFILE_NAME)
37 public class MessageStoreConfig {
38
39     @Bean
40     @Profile(AnalyticsProfile.NOT_MONGO_PROFILE_NAME)
41     public BasicMessageGroupStore simpleMessageGroupStore() {
42         return new SimpleMessageStore();
43     }
44
45     @Bean
46     @Profile(AnalyticsProfile.MONGO_PROFILE_NAME)
47     public BasicMessageGroupStore mongoMessageGroupStore(final MongoDatabaseFactory mongoDbFactory) {
48         final MongoDbChannelMessageStore store = new MongoDbChannelMessageStore(mongoDbFactory);
49         store.setPriorityEnabled(true);
50         return store;
51     }
52
53 }