I am using spring boot and maven to build my user Onlineshop. I would like to access my h2-console database onlineshop but I am failing to login with everything left as default. Also the database onlineshop is not created. Spring Boot is not throwing any errors since am using embedded tomcat. Thanks in advance for your help.
Here is my dependency
<!-- https://mvnrepository.com/artifact/com.h2database/h2 -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.199</version>
<scope>runtime</scope>
application.properties
spring.h2.console.enabled=true
spring.datasource.platform=h2
spring.datasource.url=jdbc:h2:mem:onlineshop
Error

jdbc:h2:mem:testdbjdbc:h2:mem:testdgives same error