spring-cloud/spring-cloud-task

The documentation references old initializr and needs to be updated to avoid confusion.

dashaun opened this issue · 1 comments

https://docs.spring.io/spring-cloud-task/docs/current/reference/html/#getting-started

  1. In the Dependencies text box, type jdbc and then select the JDBC dependency.

JDBC? JDBC API or Spring Data JDBC? Multiple things show up when you type JDBC.

  1. When our sample application runs, Spring Boot launches our HelloWorldCommandLineRunner and outputs our “Hello, World!” message to standard out. The TaskLifecycleListener records the start of the task and the end of the task in the repository.

  2. The example is not using CommandLineRunner, its using ApplicationRunner.

  3. The package name in the example doesn't match what we get from Initializr.

  4. You don't need to have Maven installed because you get the Maven Wrapper with Initializr.

Resolved via PR #941. Thank you for your contribution!