blob: 600e17af7ca7915f04b969c4fed0e608750e4a94 [file] [log] [blame]
/*
* 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.eagle.service.security.profile;
import com.typesafe.config.Config;
import com.typesafe.config.ConfigFactory;
import org.apache.eagle.stream.application.scheduler.ApplicationScheduler;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.ApplicationContextInitializer;
import org.springframework.context.ConfigurableApplicationContext;
public class EagleServiceProfileInitializer implements ApplicationContextInitializer<ConfigurableApplicationContext> {
private static final Logger logger = LoggerFactory.getLogger(EagleServiceProfileInitializer.class);
@Override
public void initialize(ConfigurableApplicationContext applicationContext) {
Config config = ConfigFactory.load();
String SPRING_ACTIVE_PROFILE = "eagle.service.springActiveProfile";
String profile = "sandbox";
if (config.hasPath(SPRING_ACTIVE_PROFILE)) {
profile = config.getString(SPRING_ACTIVE_PROFILE);
}
logger.info("Eagle service use env: " + profile);
applicationContext.getEnvironment().setActiveProfiles(profile);
applicationContext.refresh();
//new ApplicationScheduler().startDeamon();
}
}