30 lines
1.1 KiB
Java
30 lines
1.1 KiB
Java
|
|
package com.yupi.springbootinit;
|
|||
|
|
|
|||
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|||
|
|
import org.springframework.boot.SpringApplication;
|
|||
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|||
|
|
import org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration;
|
|||
|
|
import org.springframework.context.annotation.EnableAspectJAutoProxy;
|
|||
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|||
|
|
import org.springframework.transaction.annotation.EnableTransactionManagement;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 主类(项目启动入口)
|
|||
|
|
*
|
|||
|
|
* @author <a href="https://github.com/liyupi">程序员鱼皮</a>
|
|||
|
|
* @from <a href="https://yupi.icu">编程导航知识星球</a>
|
|||
|
|
*/
|
|||
|
|
// todo 如需开启 Redis,须移除 exclude 中的内容
|
|||
|
|
@SpringBootApplication(exclude = {RedisAutoConfiguration.class})
|
|||
|
|
@MapperScan("com.yupi.springbootinit.mapper")
|
|||
|
|
@EnableScheduling
|
|||
|
|
@EnableTransactionManagement
|
|||
|
|
@EnableAspectJAutoProxy(proxyTargetClass = true, exposeProxy = true)
|
|||
|
|
public class MainApplication {
|
|||
|
|
|
|||
|
|
public static void main(String[] args) {
|
|||
|
|
SpringApplication.run(MainApplication.class, args);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|