| | |
| | | package com.ruoyi;
|
| | |
|
| | | import org.mybatis.spring.annotation.MapperScan;
|
| | | import org.springframework.boot.SpringApplication;
|
| | | import org.springframework.boot.autoconfigure.SpringBootApplication;
|
| | | import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
|
| | | import org.springframework.scheduling.annotation.EnableScheduling;
|
| | | import org.springframework.transaction.annotation.EnableTransactionManagement;
|
| | |
|
| | | /**
|
| | | * 启动程序
|
| | |
| | | * @author ruoyi
|
| | | */
|
| | | @SpringBootApplication(exclude = { DataSourceAutoConfiguration.class })
|
| | | @MapperScan("com.ruoyi.basic.mapper")
|
| | | public class RuoYiApplication
|
| | | {
|
| | | public static void main(String[] args)
|