我尝试了各种方法,但我现在感到困惑,我有春季启动应用程序,我正在编写与内存h2数据库集成测试。
这是application.yml
spring.profiles: test
spring.datasource:
url: jdbc:h2:mem:AZ;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
username: sa
password:
driver-class-name: org.h2.Driver
platform: h2
# enable H2 web console and set url for web console
# http://localhost:8080/console
h2:
console:
enabled: true
path: /console
schema: schema.sql
data: data.sql
我从这里启动服务器以在测试的调试模式下测试它来启动控制台
@Bean
public ServletRegistrationBean h2servletRegistration() throws SQLException {
Server webServer = Server.createWebServer("-web", "-webAllowOthers", "-webPort", "8081");
webServer.start();
ServletRegistrationBean registration = new ServletRegistrationBean(new WebServlet());
registration.addUrlMappings("/console/*");
return registration;
}
我能够在8081端口上查看控制台,但是我无法看到我从yml文件中弹出的架构。请帮忙。
答案 0 :(得分:0)
我不确定为什么这不起作用,但是我通过java代码创建了一个用于数据源的bean并从那里加载了脚本。