package com.iformall; import com.ulisesbocchio.jasyptspringboot.annotation.EnableEncryptableProperties; import org.mybatis.spring.annotation.MapperScan; import org.rocketmq.starter.annotation.EnableRocketMQ; import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.EnableAspectJAutoProxy; @SpringBootApplication @MapperScan(basePackages = {"com.iformall.mapper"}) @EnableEncryptableProperties @EnableRocketMQ @EnableAspectJAutoProxy(exposeProxy = true) public class OpenApiApplication { @Value("${fm.exception}") private boolean fmException; @Value("${fm.exception_emails}") private String fmExceptionEmails; @Value("${fm.open}") private boolean fmOpen; @Value("${fm.upload_dir}") private String uploadDir; @Value("${fm.videoType}") private String videoType; @Bean public boolean isFmException() { return fmException; } @Bean public String fmExceptionEmails() { return fmExceptionEmails; } @Bean public boolean isFmOpen() { return fmOpen; } @Bean public String fmUploadDir() { return uploadDir; } @Bean public String videoType() { return videoType; } public static void main(String[] args) { SpringApplication.run(OpenApiApplication.class, args); } }