I'm reading a JSON (using Jackson) and wanted to take this value and assign it to the Spring-Boot Annotation. It would be possible ? Here's the example below:
@Scheduled(fixedRate = 14400000)
public void timelineUser() {
log.info("Iniciando serviço da API de Tweets por usuário finalizado");
TimeLineUserApi timeLineUserApi = new TimeLineUserApi();
timeLineUserApi.run();
log.info("Serviço da API de Tweets por usuário finalizado");
}
I would like it to look like this:
@Scheduled(fixedRate = umavariavelqualquer)
public void timelineUser() {
log.info("Iniciando serviço da API de Tweets por usuário finalizado");
TimeLineUserApi timeLineUserApi = new TimeLineUserApi();
timeLineUserApi.run();
log.info("Serviço da API de Tweets por usuário finalizado");
}
Thank you in advance for your understanding.