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.ConfigurableApplicationContext; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.EnableAspectJAutoProxy; import springfox.documentation.swagger2.annotations.EnableSwagger2; /** * @author chenkx * @date 2017-12-26 */ @SpringBootApplication @MapperScan(basePackages = {"com.iformall.mapper"}) @EnableSwagger2 @EnableRocketMQ @EnableEncryptableProperties @EnableAspectJAutoProxy(exposeProxy = true) public class ConsumerApplication { @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) { ConfigurableApplicationContext context = SpringApplication.run(ConsumerApplication.class, args); // FmInsideCouponVerifyMsg verifyMsg = new FmInsideCouponVerifyMsg(); // verifyMsg.setMsgType(EnumMsgRecordType.INSIDE_COUPON_VERIFY.getCode()); // //verifyMsg.updateTenantInfo(tenantEntity); // verifyMsg.setTenantId("789"); // verifyMsg.setCouponOrderId(436060427278385152L); // verifyMsg.setBUserId(435982884998905856L); // try { // context.getBean(FmInsideCouponVerifyMsgServiceImpl.class).send(verifyMsg); // } catch (BeansException e) { // // TODO Auto-generated catch block // e.printStackTrace(); // } catch (Exception e) { // // TODO Auto-generated catch block // e.printStackTrace(); // } } }