1

私は例に従いました: https://spring.io/guides/gs/scheduling-tasks/。できます。次に、scala コードに変更しました。私のスカラコード:

@Component
class ScheduledConsumer {

  private val log = LoggerFactory.getLogger(classOf[ScheduledConsumer])
  private val dateFormat = new SimpleDateFormat("HH:mm:ss")

  @Scheduled(fixedRate = 50)
  def reportCurrentTime(): Unit = {
    log.info("The time is now {}!!!", ScheduledConsumer.dateFormat.format(new Date))
    println("This is for testing!!!")
  }
}

私のscalaコードが機能しないのはなぜですか? ありがとう

4

1 に答える 1