You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
32 lines
1.1 KiB
package cn.iocoder.yudao.server; |
|
|
|
import org.springframework.boot.SpringApplication; |
|
import org.springframework.boot.autoconfigure.SpringBootApplication; |
|
import org.springframework.boot.system.ApplicationHome; |
|
import org.springframework.scheduling.annotation.EnableScheduling; |
|
|
|
import java.io.File; |
|
|
|
@SuppressWarnings("SpringComponentScan") // 忽略 IDEA 无法识别 ${yudao.info.base-package} |
|
@SpringBootApplication(scanBasePackages = { |
|
"${yudao.info.base-package}.server", "${yudao.info.base-package}.module", |
|
"co.yixiang", "com.zsw.erp" |
|
}) |
|
//@EnableDubbo |
|
public class YudaoServerApplication { |
|
|
|
public static void main(String[] args) { |
|
|
|
ApplicationHome home = new ApplicationHome(YudaoServerApplication.class); |
|
File jarFile = home.getSource(); |
|
String dirPath = jarFile.getParentFile().toString(); |
|
String filePath = dirPath + File.separator + ".dubbo"; |
|
System.out.println(filePath); |
|
|
|
System.setProperty("dubbo.meta.cache.filePath", filePath); |
|
System.setProperty("dubbo.mapping.cache.filePath",filePath); |
|
|
|
SpringApplication.run(YudaoServerApplication.class, args); |
|
} |
|
|
|
}
|
|
|