|
@@ -0,0 +1,14 @@
|
|
|
+package com.fjhx.base;
|
|
|
+
|
|
|
+import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
|
|
+import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
|
|
|
+import org.springframework.context.annotation.ComponentScan;
|
|
|
+import org.springframework.stereotype.Component;
|
|
|
+
|
|
|
+
|
|
|
+@Component
|
|
|
+@ComponentScan("com.ruoyi.**")
|
|
|
+@EnableAutoConfiguration(exclude = {DataSourceAutoConfiguration.class})
|
|
|
+public class Config {
|
|
|
+
|
|
|
+}
|