1
@SpringBootApplication
//@ImportResource({"classpath:dubbo.xml"})
//I want to specify the xml file with command line arguments at run time
public class App {
public static void main(String[] args) {
// How to import the XML file now?
SpringApplication.run(App.class, args);
}
}
我想在運行時用命令行參數指定XML文件,然後在main方法中導入它。我能做什麼?如何在不使用「ImportResource」註釋的情況下導入xml文件
不要提供方法存根,請提供您已經嘗試過的方法,這將幫助我們深入到問題的底部,我們是幫助渠道,而不是教程,快樂的編碼! :) –