23 lines
686 B
Java
23 lines
686 B
Java
package com.jepsoninfo;
|
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.context.annotation.EnableAspectJAutoProxy;
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
|
|
@EnableAsync
|
|
@EnableAspectJAutoProxy
|
|
@MapperScan("com.jepsoninfo.dao")
|
|
@ComponentScan("com.jepsoninfo.*")
|
|
@SpringBootApplication
|
|
public class TransferServiceApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(TransferServiceApplication.class, args);
|
|
}
|
|
|
|
|
|
}
|