Код: Выделить всё
com.h2database
h2
1.4.192
< /code>
Конфигурация Spring Boot: < /p>
Файл конфигурации Springboot < /p>
@Configuration
public class WebConfiguration {
@Bean
ServletRegistrationBean h2servletRegistration(){
ServletRegistrationBean registrationBean = new ServletRegistrationBean( new WebServlet());
registrationBean.addUrlMappings("/console/*");
return registrationBean;
}
}
Подробнее здесь: https://stackoverflow.com/questions/472 ... ot-opening