SpringBoot中使用HSQLDB作为内存数据库

时间:2025-04-24 16:33:23
<properties> <>UTF-8</> </properties> <parent> <groupId></groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.2.</version> <relativePath /> </parent> <dependencies> <dependency> <groupId></groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- 如果添加了springBoot中隊jpa的依賴,就需要在中设置数据源 --> <dependency> <groupId></groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <!-- 添加内存数据库 --> <dependency> <groupId></groupId> <artifactId>hsqldb</artifactId> <!-- <scope>runtime</scope> --> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId></groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build>