Spring Boot: obtém o argumento da linha de comando no método anotado @Bean

Estou criando um aplicativo Spring Boot e preciso ler o argumento da linha de comando no método anotado com @Bean. Veja o código de exemplo:

@SpringBootApplication
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }

    @Bean
    public SomeService getSomeService() throws IOException {
        return new SomeService(commandLineArgument);
    }
}

Como posso resolver meu problema?

questionAnswers(4)

yourAnswerToTheQuestion