rit*_*ata 1 java h2 spring-boot postman
this is my application.properties file in src/main/resource
spring.datasource.platform=h2
spring.h2.console.enabled=true
spring.datasource.url=jdbc:h2:mem:testdb
Run Code Online (Sandbox Code Playgroud)
我在 pom.xml 中添加了 h2 依赖项
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
Run Code Online (Sandbox Code Playgroud)
另一种是Jpa依赖和Web依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
Run Code Online (Sandbox Code Playgroud)
整个项目在邮递员中运行良好,但当我在网络浏览器中点击 url 时不起作用
我怀疑这是一个配置问题。将以下内容添加到您的 application.properties
# Enabling H2 Console
spring.h2.console.enabled=true
# Custom H2 Console URL
spring.h2.console.path=/h2-console
Run Code Online (Sandbox Code Playgroud)
我建议阅读以下文章 https://howtodoinjava.com/spring-boot2/h2-database-example/
| 归档时间: |
|
| 查看次数: |
3631 次 |
| 最近记录: |