Error: Sorry, remote connections ('webAllowOthers') are disabled on this server
Solution:
Set the parameter "spring.h2.console.settings.web-allow-others" to true in application.properties file
File--> ..\src\main\resources\application.properties
spring.h2.console.enabled=true
spring.h2.console.settings.web-allow-others=true
spring.h2.console.path=/h2-console
spring.datasource.url=jdbc:h2:mem:testdb
spring.datasource.driver-class-name=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=password
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults=false