package com.lemon.lifecenter; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.PropertySource; @SpringBootApplication public class LifeCenterApplication { public static void main(String[] args) { SpringApplication.run(LifeCenterApplication.class, args); } }