提交 | 用户 | 时间
|
a6316e
|
1 |
package com.billion; |
A |
2 |
|
|
3 |
import org.mybatis.spring.annotation.MapperScan; |
|
4 |
import org.springframework.boot.SpringApplication; |
|
5 |
import org.springframework.boot.autoconfigure.SpringBootApplication; |
|
6 |
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; |
|
7 |
import org.springframework.context.annotation.ComponentScan; |
|
8 |
|
|
9 |
/** |
|
10 |
* 启动程序 |
|
11 |
* |
|
12 |
* @author ruoyi |
|
13 |
*/ |
|
14 |
@SpringBootApplication(exclude = { DataSourceAutoConfiguration.class }) |
|
15 |
public class RuoYiApplication |
|
16 |
{ |
|
17 |
public static void main(String[] args) |
|
18 |
{ |
|
19 |
// System.setProperty("spring.devtools.restart.enabled", "false"); |
|
20 |
SpringApplication.run(RuoYiApplication.class, args); |
|
21 |
} |
|
22 |
} |