我正在构建一个Spring Boot应用程序,需要在使用@Bean注释的方法中读取命令行参数.请参阅示例代码:
@SpringBootApplicationpublic class Application { public static voID main(String[] args) { SpringApplication.run(Application.class,args); } @Bean public SomeService getSomeService() throws IOException { return new SomeService(commandlineArgument); }}
我怎样才能解决我的问题?最佳答案尝试
@Beanpublic SomeService getSomeService(@Value("${property.key}") String key) throws IOException { return new SomeService(key);}
总结 以上是内存溢出为你收集整理的java – Spring Boot:在@Bean注释方法中获取命令行参数全部内容,希望文章能够帮你解决java – Spring Boot:在@Bean注释方法中获取命令行参数所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)