我正在使用java-main并在Spring-boot容器中注入。 我这样使用Spring启动应用程序属性配置:
@Configuration
@ComponentScan("com.mycompany")
@PropertySource("file:/Users/tt/application.properties")
public class SpringConfiguration {
..
}
工作正常。但我需要对application.properties路径进行硬编码。有没有办法动态注入它作为参数?
我想再次提醒一下,Spring-boot不是作为主容器运行的。我只是在Java主进程中使用它的库,所以我不能使用Spring-boot内置功能。</ p >
谢谢, 射线。