package com.ichangzuo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.context.properties.ConfigurationPropertiesScan; import org.springframework.context.annotation.Bean; import org.springframework.scheduling.annotation.EnableScheduling; import org.springframework.transaction.PlatformTransactionManager; import org.springframework.transaction.annotation.EnableTransactionManagement; /** * 应用启动类 * * @author Ray * @since 0.0.1 */ @SpringBootApplication @ConfigurationPropertiesScan @EnableScheduling public class iczApplication { public static void main(String[] args) { SpringApplication.run(iczApplication.class, args); } }