Segui o passo a passo da aula porém recebi o seguinte erro:
"Error creating bean with name 'inMemoryDatabaseShutdownExecutor' defined in class path resource"
Estou usando Gradle ao invés de Maven.
Abaixo segue meu application.properties(h2.Driver está em vermelho, acusando algum erro):
# datasource
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.url=jdbc:h2:mem:alura-forum
spring.datasource.username=sa
spring.datasource.password=
# jpa
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
spring.jpa.hibernate.ddl-auto=update
# h2
spring.h2.console.enabled=true
spring.h2.console.path=/h2-console