如何在application.properties或application.yml文件中启用了H2 Console,例如添加 spring.h2.console.enabled=true
时间: 2024-10-09 17:01:53 浏览: 35
在Spring Boot应用中启用H2 Console,你需要在`application.properties`或`application.yml`文件中添加特定的配置项,用于开启H2 Database的控制台功能并设置其访问端口。以下是这两个文件中相应的配置示例:
**application.properties:**
```properties
spring.h2.console.enabled=true
spring.h2.console.path=/h2-console
```
这里,`spring.h2.console.enabled=true`表示开启了H2 Console,而`spring.h2.console.path`则设置了访问H2 Console的URL前缀,默认值是`/h2-console`,即访问地址会是`http://localhost:8080/h2-console`(假设你的应用运行在默认端口8080)。
**application.yml:**
```yaml
spring:
h2:
console:
enabled: true
path: '/h2-console'
```
YAML版本的配置方式类似,`enabled`键的值同样设为`true`,`path`值保持不变。
记住,在生产环境中,你可能需要更改默认的端口和路径以防止直接暴露给外部用户。在实际部署之前,记得测试配置是否生效。
阅读全文