You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, When I try to run project from terminal with comment mvn clean spring-boot:run
I got this exception. I searched on the net but could not work anything, do you have this problem too ? o.s.b.f.support.DisposableBeanAdapter : Invocation of destroy method failed on bean with name 'inMemoryDatabaseShutdownExecutor': org.h2.jdbc.JdbcSQLNonTransientConnectionException: Database is already closed (to disable automatic closing at VM shutdown, add ";DB_CLOSE_ON_EXIT=FALSE" to the db URL) [90121-200]
The text was updated successfully, but these errors were encountered:
Hi, I had the same issue and after digging a bit deeper you need to add the spring starter web dependency to your pom.xml since we are trying to run a web app. That fixed my issue <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
Hi, When I try to run project from terminal with comment
mvn clean spring-boot:run
I got this exception. I searched on the net but could not work anything, do you have this problem too ?
o.s.b.f.support.DisposableBeanAdapter : Invocation of destroy method failed on bean with name 'inMemoryDatabaseShutdownExecutor': org.h2.jdbc.JdbcSQLNonTransientConnectionException: Database is already closed (to disable automatic closing at VM shutdown, add ";DB_CLOSE_ON_EXIT=FALSE" to the db URL) [90121-200]
The text was updated successfully, but these errors were encountered: