Boa noite ! Esta estourando o seguinte erro no console:
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2020-12-07 19:38:45.732 ERROR 12028 --- [ restartedMain] o.s.boot.SpringApplication
Pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
properties:
#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 funciona apenas com o banco de dados H2 spring.h2.console.enabled=true spring.h2.console.path=/h2-console
Fiz as anotações nas classes e suas respectivas importações mas o código não roda...