com.design.perpetual.ecobeethermostat.Application.java Source code

Java tutorial

Introduction

Here is the source code for com.design.perpetual.ecobeethermostat.Application.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.design.perpetual.ecobeethermostat;

import com.design.perpetual.ecobeethermostat.app.AppState;
import com.design.perpetual.ecobeethermostat.app.authorization.impl.AppKey;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.PropertySource;
import org.springframework.context.support.PropertySourcesPlaceholderConfigurer;
import org.springframework.core.env.Environment;
import org.springframework.scheduling.annotation.EnableScheduling;

/**
 * @author Mac
 */
@SpringBootApplication
@EnableScheduling
@PropertySource("classpath:application.properties")
public class Application {

    @Autowired
    private Environment env;

    public static void main(String[] args) {
        ConfigurableApplicationContext cac = SpringApplication.run(Application.class, args);
        AppKey appKey = cac.getBean(AppKey.class);
        appKey.getToken();
    }

    @Bean
    public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() {
        return new PropertySourcesPlaceholderConfigurer();
    }

    @Bean
    public AppState appState() {
        return AppState.valueOf(env.getProperty("appState"));
    }
}