Mohamad Mahmoodhashnotes.hashnode.dev·Sep 3, 2024Error: Sorry, remote connections ('webAllowOthers') are disabled on this serverSolution: 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 spri...33 readsh2db
Uthiraraj Saminathanlearntechhub.hashnode.dev·Dec 9, 2023Spring Boot GraphQL service with InMemory DB (H2) integrationIn this article, we will explore how to integrate an InMemory database in the Spring Boot application. We will use H2 DB as our In-Memory DB. It's a popular open-source lightweight DB engine that can be easily embedded with the spring boot applicatio...32 readsSpring Boot with Graphqlh2db