Spring Boot/H2 控制台未显示我的表

Posted

技术标签:

【中文标题】Spring Boot/H2 控制台未显示我的表【英文标题】:Spring Boot/H2 Console not showing my table 【发布时间】:2018-04-11 14:30:19 【问题描述】:

我已经尝试了 *** 上针对该问题提供的许多解决方案,但没有一个对我有用。 这是我的 H2 控制台登录页面:

我的控制台:

我的“application.properties”现在处于默认状态:

spring.h2.console.enabled=true

mydb.sql:

create table members
(
  id integer not null,
  firstname varchar(250) not null,
  lastname varchar(250),
  phonenumber integer,
  created timestamp,
  primary key(id)
);

Eclipse 控制台:

2017-10-30 16:37:17.810  INFO 10520 --- [  restartedMain] c.r.s.SpringbootdbApplication            : Starting SpringbootdbApplication on ISRTLVM740 with PID 10520 (C:\Users\apodga\javaworkspace2\springbootdb\target\classes started by apodga in C:\Users\apodga\javaworkspace2\springbootdb)
2017-10-30 16:37:17.810  INFO 10520 --- [  restartedMain] c.r.s.SpringbootdbApplication            : No active profile set, falling back to default profiles: default
2017-10-30 16:37:17.872  INFO 10520 --- [  restartedMain] ConfigServletWebServerApplicationContext : Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@77f9494a: startup date [Mon Oct 30 16:37:17 IST 2017]; root of context hierarchy
2017-10-30 16:37:19.159  INFO 10520 --- [  restartedMain] o.s.b.f.s.DefaultListableBeanFactory     : Overriding bean definition for bean 'httpRequestHandlerAdapter' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration; factoryMethodName=httpRequestHandlerAdapter; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$EnableWebMvcConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration; factoryMethodName=httpRequestHandlerAdapter; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/data/rest/webmvc/config/RepositoryRestMvcConfiguration.class]]
2017-10-30 16:37:19.880  INFO 10520 --- [  restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$7765ff64] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-10-30 16:37:21.009  INFO 10520 --- [  restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 8080 (http)
2017-10-30 16:37:21.024  INFO 10520 --- [  restartedMain] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2017-10-30 16:37:21.024  INFO 10520 --- [  restartedMain] org.apache.catalina.core.StandardEngine  : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-10-30 16:37:21.134  INFO 10520 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2017-10-30 16:37:21.134  INFO 10520 --- [ost-startStop-1] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 3262 ms
2017-10-30 16:37:21.322  INFO 10520 --- [ost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean  : Mapping servlet: 'dispatcherServlet' to [/]
2017-10-30 16:37:21.322  INFO 10520 --- [ost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean  : Mapping servlet: 'webServlet' to [/h2-console/*]
2017-10-30 16:37:21.337  INFO 10520 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-10-30 16:37:21.337  INFO 10520 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-10-30 16:37:21.337  INFO 10520 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-10-30 16:37:21.337  INFO 10520 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'requestContextFilter' to: [/*]
2017-10-30 16:37:21.618  INFO 10520 --- [  restartedMain] com.zaxxer.hikari.HikariDataSource       : testdb - Starting...
2017-10-30 16:37:21.977  INFO 10520 --- [  restartedMain] com.zaxxer.hikari.HikariDataSource       : testdb - Start completed.
2017-10-30 16:37:22.039  INFO 10520 --- [  restartedMain] j.LocalContainerEntityManagerFactoryBean : Building JPA container EntityManagerFactory for persistence unit 'default'
2017-10-30 16:37:22.055  INFO 10520 --- [  restartedMain] o.hibernate.jpa.internal.util.LogHelper  : HHH000204: Processing PersistenceUnitInfo [
    name: default
    ...]
2017-10-30 16:37:22.165  INFO 10520 --- [  restartedMain] org.hibernate.Version                    : HHH000412: Hibernate Core 5.2.11.Final
2017-10-30 16:37:22.165  INFO 10520 --- [  restartedMain] org.hibernate.cfg.Environment            : HHH000206: hibernate.properties not found
2017-10-30 16:37:22.212  INFO 10520 --- [  restartedMain] o.hibernate.annotations.common.Version   : HCANN000001: Hibernate Commons Annotations 5.0.1.Final
2017-10-30 16:37:22.352  INFO 10520 --- [  restartedMain] org.hibernate.dialect.Dialect            : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
2017-10-30 16:37:22.649  INFO 10520 --- [  restartedMain] o.h.t.schema.internal.SchemaCreatorImpl  : HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@64d941ca'
2017-10-30 16:37:22.649  INFO 10520 --- [  restartedMain] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2017-10-30 16:37:23.594  INFO 10520 --- [  restartedMain] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@77f9494a: startup date [Mon Oct 30 16:37:17 IST 2017]; root of context hierarchy
2017-10-30 16:37:23.714  INFO 10520 --- [  restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "[/members],methods=[GET]" onto public java.util.List<com.recweb.springbootdb.Member> com.recweb.springbootdb.MemberController.getAllUsers()
2017-10-30 16:37:23.721  INFO 10520 --- [  restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "[/error]" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-10-30 16:37:23.721  INFO 10520 --- [  restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "[/error],produces=[text/html]" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-10-30 16:37:23.769  INFO 10520 --- [  restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-10-30 16:37:23.769  INFO 10520 --- [  restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-10-30 16:37:23.789  INFO 10520 --- [  restartedMain] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in repositoryRestExceptionHandler
2017-10-30 16:37:23.871  INFO 10520 --- [  restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-10-30 16:37:24.094  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerAdapter   : Looking for @ControllerAdvice: org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@77f9494a: startup date [Mon Oct 30 16:37:17 IST 2017]; root of context hierarchy
2017-10-30 16:37:24.119  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository],methods=[OPTIONS],produces=[application/hal+json || application/json]" onto public org.springframework.http.ResponseEntity<?> org.springframework.data.rest.webmvc.RepositoryEntityController.optionsForCollectionResource(org.springframework.data.rest.webmvc.RootResourceInformation)
2017-10-30 16:37:24.119  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository],methods=[HEAD],produces=[application/hal+json || application/json]" onto public org.springframework.http.ResponseEntity<?> org.springframework.data.rest.webmvc.RepositoryEntityController.headCollectionResource(org.springframework.data.rest.webmvc.RootResourceInformation,org.springframework.data.rest.webmvc.support.DefaultedPageable) throws org.springframework.web.HttpRequestMethodNotSupportedException
2017-10-30 16:37:24.119  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository],methods=[GET],produces=[application/hal+json || application/json]" onto public org.springframework.hateoas.Resources<?> org.springframework.data.rest.webmvc.RepositoryEntityController.getCollectionResource(org.springframework.data.rest.webmvc.RootResourceInformation,org.springframework.data.rest.webmvc.support.DefaultedPageable,org.springframework.data.domain.Sort,org.springframework.data.rest.webmvc.PersistentEntityResourceAssembler) throws org.springframework.data.rest.webmvc.ResourceNotFoundException,org.springframework.web.HttpRequestMethodNotSupportedException
2017-10-30 16:37:24.119  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository],methods=[GET],produces=[application/x-spring-data-compact+json || text/uri-list]" onto public org.springframework.hateoas.Resources<?> org.springframework.data.rest.webmvc.RepositoryEntityController.getCollectionResourceCompact(org.springframework.data.rest.webmvc.RootResourceInformation,org.springframework.data.rest.webmvc.support.DefaultedPageable,org.springframework.data.domain.Sort,org.springframework.data.rest.webmvc.PersistentEntityResourceAssembler) throws org.springframework.data.rest.webmvc.ResourceNotFoundException,org.springframework.web.HttpRequestMethodNotSupportedException
2017-10-30 16:37:24.119  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository],methods=[POST],produces=[application/hal+json || application/json]" onto public org.springframework.http.ResponseEntity<org.springframework.hateoas.ResourceSupport> org.springframework.data.rest.webmvc.RepositoryEntityController.postCollectionResource(org.springframework.data.rest.webmvc.RootResourceInformation,org.springframework.data.rest.webmvc.PersistentEntityResource,org.springframework.data.rest.webmvc.PersistentEntityResourceAssembler,java.lang.String) throws org.springframework.web.HttpRequestMethodNotSupportedException
2017-10-30 16:37:24.121  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/id],methods=[OPTIONS],produces=[application/hal+json || application/json]" onto public org.springframework.http.ResponseEntity<?> org.springframework.data.rest.webmvc.RepositoryEntityController.optionsForItemResource(org.springframework.data.rest.webmvc.RootResourceInformation)
2017-10-30 16:37:24.121  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/id],methods=[HEAD],produces=[application/hal+json || application/json]" onto public org.springframework.http.ResponseEntity<?> org.springframework.data.rest.webmvc.RepositoryEntityController.headForItemResource(org.springframework.data.rest.webmvc.RootResourceInformation,java.io.Serializable,org.springframework.data.rest.webmvc.PersistentEntityResourceAssembler) throws org.springframework.web.HttpRequestMethodNotSupportedException
2017-10-30 16:37:24.121  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/id],methods=[PATCH],produces=[application/hal+json || application/json]" onto public org.springframework.http.ResponseEntity<org.springframework.hateoas.ResourceSupport> org.springframework.data.rest.webmvc.RepositoryEntityController.patchItemResource(org.springframework.data.rest.webmvc.RootResourceInformation,org.springframework.data.rest.webmvc.PersistentEntityResource,java.io.Serializable,org.springframework.data.rest.webmvc.PersistentEntityResourceAssembler,org.springframework.data.rest.webmvc.support.ETag,java.lang.String) throws org.springframework.web.HttpRequestMethodNotSupportedException,org.springframework.data.rest.webmvc.ResourceNotFoundException
2017-10-30 16:37:24.121  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/id],methods=[DELETE],produces=[application/hal+json || application/json]" onto public org.springframework.http.ResponseEntity<?> org.springframework.data.rest.webmvc.RepositoryEntityController.deleteItemResource(org.springframework.data.rest.webmvc.RootResourceInformation,java.io.Serializable,org.springframework.data.rest.webmvc.support.ETag) throws org.springframework.data.rest.webmvc.ResourceNotFoundException,org.springframework.web.HttpRequestMethodNotSupportedException
2017-10-30 16:37:24.121  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/id],methods=[GET],produces=[application/hal+json || application/json]" onto public org.springframework.http.ResponseEntity<org.springframework.hateoas.Resource<?>> org.springframework.data.rest.webmvc.RepositoryEntityController.getItemResource(org.springframework.data.rest.webmvc.RootResourceInformation,java.io.Serializable,org.springframework.data.rest.webmvc.PersistentEntityResourceAssembler,org.springframework.http.HttpHeaders) throws org.springframework.web.HttpRequestMethodNotSupportedException
2017-10-30 16:37:24.121  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/id],methods=[PUT],produces=[application/hal+json || application/json]" onto public org.springframework.http.ResponseEntity<? extends org.springframework.hateoas.ResourceSupport> org.springframework.data.rest.webmvc.RepositoryEntityController.putItemResource(org.springframework.data.rest.webmvc.RootResourceInformation,org.springframework.data.rest.webmvc.PersistentEntityResource,java.io.Serializable,org.springframework.data.rest.webmvc.PersistentEntityResourceAssembler,org.springframework.data.rest.webmvc.support.ETag,java.lang.String) throws org.springframework.web.HttpRequestMethodNotSupportedException
2017-10-30 16:37:24.126  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/id/property],methods=[GET],produces=[application/hal+json || application/json]" onto public org.springframework.http.ResponseEntity<org.springframework.hateoas.ResourceSupport> org.springframework.data.rest.webmvc.RepositoryPropertyReferenceController.followPropertyReference(org.springframework.data.rest.webmvc.RootResourceInformation,java.io.Serializable,java.lang.String,org.springframework.data.rest.webmvc.PersistentEntityResourceAssembler) throws java.lang.Exception
2017-10-30 16:37:24.126  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/id/property/propertyId],methods=[GET],produces=[application/hal+json || application/json]" onto public org.springframework.http.ResponseEntity<org.springframework.hateoas.ResourceSupport> org.springframework.data.rest.webmvc.RepositoryPropertyReferenceController.followPropertyReference(org.springframework.data.rest.webmvc.RootResourceInformation,java.io.Serializable,java.lang.String,java.lang.String,org.springframework.data.rest.webmvc.PersistentEntityResourceAssembler) throws java.lang.Exception
2017-10-30 16:37:24.129  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/id/property],methods=[DELETE],produces=[application/hal+json || application/json]" onto public org.springframework.http.ResponseEntity<? extends org.springframework.hateoas.ResourceSupport> org.springframework.data.rest.webmvc.RepositoryPropertyReferenceController.deletePropertyReference(org.springframework.data.rest.webmvc.RootResourceInformation,java.io.Serializable,java.lang.String) throws java.lang.Exception
2017-10-30 16:37:24.129  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/id/property],methods=[GET],produces=[application/x-spring-data-compact+json || text/uri-list]" onto public org.springframework.http.ResponseEntity<org.springframework.hateoas.ResourceSupport> org.springframework.data.rest.webmvc.RepositoryPropertyReferenceController.followPropertyReferenceCompact(org.springframework.data.rest.webmvc.RootResourceInformation,java.io.Serializable,java.lang.String,org.springframework.data.rest.webmvc.PersistentEntityResourceAssembler) throws java.lang.Exception
2017-10-30 16:37:24.129  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/id/property],methods=[PATCH || PUT || POST],consumes=[application/json || application/x-spring-data-compact+json || text/uri-list],produces=[application/hal+json || application/json]" onto public org.springframework.http.ResponseEntity<? extends org.springframework.hateoas.ResourceSupport> org.springframework.data.rest.webmvc.RepositoryPropertyReferenceController.createPropertyReference(org.springframework.data.rest.webmvc.RootResourceInformation,org.springframework.http.HttpMethod,org.springframework.hateoas.Resources<java.lang.Object>,java.io.Serializable,java.lang.String) throws java.lang.Exception
2017-10-30 16:37:24.129  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/id/property/propertyId],methods=[DELETE],produces=[application/hal+json || application/json]" onto public org.springframework.http.ResponseEntity<org.springframework.hateoas.ResourceSupport> org.springframework.data.rest.webmvc.RepositoryPropertyReferenceController.deletePropertyReferenceId(org.springframework.data.rest.webmvc.RootResourceInformation,java.io.Serializable,java.lang.String,java.lang.String) throws java.lang.Exception
2017-10-30 16:37:24.131  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/search],methods=[OPTIONS],produces=[application/hal+json || application/json]" onto public org.springframework.http.HttpEntity<?> org.springframework.data.rest.webmvc.RepositorySearchController.optionsForSearches(org.springframework.data.rest.webmvc.RootResourceInformation)
2017-10-30 16:37:24.134  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/search/search],methods=[GET],produces=[application/x-spring-data-compact+json]" onto public org.springframework.hateoas.ResourceSupport org.springframework.data.rest.webmvc.RepositorySearchController.executeSearchCompact(org.springframework.data.rest.webmvc.RootResourceInformation,org.springframework.http.HttpHeaders,org.springframework.util.MultiValueMap<java.lang.String, java.lang.Object>,java.lang.String,java.lang.String,org.springframework.data.rest.webmvc.support.DefaultedPageable,org.springframework.data.domain.Sort,org.springframework.data.rest.webmvc.PersistentEntityResourceAssembler)
2017-10-30 16:37:24.134  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/search/search],methods=[GET],produces=[application/hal+json || application/json]" onto public org.springframework.http.ResponseEntity<?> org.springframework.data.rest.webmvc.RepositorySearchController.executeSearch(org.springframework.data.rest.webmvc.RootResourceInformation,org.springframework.util.MultiValueMap<java.lang.String, java.lang.Object>,java.lang.String,org.springframework.data.rest.webmvc.support.DefaultedPageable,org.springframework.data.domain.Sort,org.springframework.data.rest.webmvc.PersistentEntityResourceAssembler,org.springframework.http.HttpHeaders)
2017-10-30 16:37:24.134  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/search/search],methods=[HEAD],produces=[application/hal+json || application/json]" onto public org.springframework.http.ResponseEntity<java.lang.Object> org.springframework.data.rest.webmvc.RepositorySearchController.headForSearch(org.springframework.data.rest.webmvc.RootResourceInformation,java.lang.String)
2017-10-30 16:37:24.134  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/search/search],methods=[OPTIONS],produces=[application/hal+json || application/json]" onto public org.springframework.http.ResponseEntity<java.lang.Object> org.springframework.data.rest.webmvc.RepositorySearchController.optionsForSearch(org.springframework.data.rest.webmvc.RootResourceInformation,java.lang.String)
2017-10-30 16:37:24.136  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/search],methods=[HEAD],produces=[application/hal+json || application/json]" onto public org.springframework.http.HttpEntity<?> org.springframework.data.rest.webmvc.RepositorySearchController.headForSearches(org.springframework.data.rest.webmvc.RootResourceInformation)
2017-10-30 16:37:24.136  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/repository/search],methods=[GET],produces=[application/hal+json || application/json]" onto public org.springframework.data.rest.webmvc.RepositorySearchesResource org.springframework.data.rest.webmvc.RepositorySearchController.listSearches(org.springframework.data.rest.webmvc.RootResourceInformation)
2017-10-30 16:37:24.136  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/ || ],methods=[OPTIONS],produces=[application/hal+json || application/json]" onto public org.springframework.http.HttpEntity<?> org.springframework.data.rest.webmvc.RepositoryController.optionsForRepositories()
2017-10-30 16:37:24.136  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/ || ],methods=[HEAD],produces=[application/hal+json || application/json]" onto public org.springframework.http.ResponseEntity<?> org.springframework.data.rest.webmvc.RepositoryController.headForRepositories()
2017-10-30 16:37:24.139  INFO 10520 --- [  restartedMain] o.s.d.r.w.RepositoryRestHandlerMapping   : Mapped "[/ || ],methods=[GET],produces=[application/hal+json || application/json]" onto public org.springframework.http.HttpEntity<org.springframework.data.rest.webmvc.RepositoryLinksResource> org.springframework.data.rest.webmvc.RepositoryController.listRepositories()
2017-10-30 16:37:24.141  INFO 10520 --- [  restartedMain] o.s.d.r.w.BasePathAwareHandlerMapping    : Mapped "[/profile/repository],methods=[GET],produces=[application/alps+json || */*]" onto org.springframework.http.HttpEntity<org.springframework.data.rest.webmvc.RootResourceInformation> org.springframework.data.rest.webmvc.alps.AlpsController.descriptor(org.springframework.data.rest.webmvc.RootResourceInformation)
2017-10-30 16:37:24.141  INFO 10520 --- [  restartedMain] o.s.d.r.w.BasePathAwareHandlerMapping    : Mapped "[/profile/repository],methods=[OPTIONS],produces=[application/alps+json]" onto org.springframework.http.HttpEntity<?> org.springframework.data.rest.webmvc.alps.AlpsController.alpsOptions()
2017-10-30 16:37:24.141  INFO 10520 --- [  restartedMain] o.s.d.r.w.BasePathAwareHandlerMapping    : Mapped "[/profile],methods=[GET]" onto org.springframework.http.HttpEntity<org.springframework.hateoas.ResourceSupport> org.springframework.data.rest.webmvc.ProfileController.listAllFormsOfMetadata()
2017-10-30 16:37:24.141  INFO 10520 --- [  restartedMain] o.s.d.r.w.BasePathAwareHandlerMapping    : Mapped "[/profile],methods=[OPTIONS]" onto public org.springframework.http.HttpEntity<?> org.springframework.data.rest.webmvc.ProfileController.profileOptions()
2017-10-30 16:37:24.144  INFO 10520 --- [  restartedMain] o.s.d.r.w.BasePathAwareHandlerMapping    : Mapped "[/profile/repository],methods=[GET],produces=[application/schema+json]" onto public org.springframework.http.HttpEntity<org.springframework.data.rest.webmvc.json.JsonSchema> org.springframework.data.rest.webmvc.RepositorySchemaController.schema(org.springframework.data.rest.webmvc.RootResourceInformation)
2017-10-30 16:37:24.339  INFO 10520 --- [  restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2017-10-30 16:37:24.456  INFO 10520 --- [  restartedMain] o.s.j.e.a.AnnotationMBeanExporter        : Registering beans for JMX exposure on startup
2017-10-30 16:37:24.459  INFO 10520 --- [  restartedMain] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'dataSource' has been autodetected for JMX exposure
2017-10-30 16:37:24.469  INFO 10520 --- [  restartedMain] o.s.j.e.a.AnnotationMBeanExporter        : Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource]
2017-10-30 16:37:24.546  INFO 10520 --- [  restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 8080 (http)
2017-10-30 16:37:24.554  INFO 10520 --- [  restartedMain] c.r.s.SpringbootdbApplication            : Started SpringbootdbApplication in 7.103 seconds (JVM running for 7.693)

我正在使用 Spring Boot v2.0.0.M5。 H2 1.4.196。

另一个可能有用的屏幕截图:

类型、名称和数据库是空的,但我正在使用视频教程,它也是空的..

有什么线索吗? 谢谢

【问题讨论】:

【参考方案1】:

我遇到了同样的问题,我花了一段时间才找出表格丢失的原因。就我而言,我已将 jdbc url 从“jdbc:h2:~/test”更改为“jdbc:h2:mem:testdb”,这是 Spring Boot 创建的默认 h2 数据库。

在spring boot default H2 jdbc connection (and H2 console)也可以找到cmets

【讨论】:

将 JDBC URL 更改为“jdbc:h2:mem:testdb”也对我有用【参考方案2】:

您需要注册 bean 以显示 h2 控制台,例如:

@Bean   
public ServletRegistrationBean h2servletRegistration()         
        ServletRegistrationBean registrationBean = new ServletRegistrationBean(new WebServlet());       
        registrationBean.addUrlMappings("/console/*");      
        return registrationBean;    

并从浏览器调用 H2 控制台,例如:

http://localhost:8080/console

注意:端口号将是您的 Spring Boot 应用程序正在运行的端口

在 application.properties 中添加以下行

spring.h2.console.enabled=true
spring.datasource.platform=h2
spring.datasource.driverClassName = org.h2.Driver
spring.datasource.url=jdbc:h2:file:~/test;
spring.datasource.username=sa
spring.datasource.password=

【讨论】:

application.properties 配置确实对我有用,谢谢【参考方案3】:

尝试使用 @EntityScan("packageName"); 注释主类

如果你的实体在主方法类的 com.example 包中,请写 @EntityScan("com.example");

【讨论】:

【参考方案4】:

由于默认网址不同。它没有显示在您的特定 DS 中。 将以下内容添加到src/main/resources 下的application.properties 文件中

spring.h2.console.enabled=true
spring.datasource.url=jdbc:h2:mem:testdb

【讨论】:

【参考方案5】:

好吧,那太傻了。当我将我的 sql 文件的名称更改为“schema.sql”时,它起作用了......

【讨论】:

这是因为,spring-boot JPA 数据库的默认初始化。阅读:docs.spring.io/spring-boot/docs/current/reference/html/…【参考方案6】:

尝试完全按照您在 application.properties 中定义的方式更改 url。

在我的例子中,url 是:spring.datasource.url:jdbc:h2:./test/test.service;AUTO_SERVER=TRUE;LOCK_TIMEOUT=100000

所以我只是将 web 控制台中的 url 更改为 jdbc:h2:./test/test.service 并且我的表格出现了。

【讨论】:

【参考方案7】:

我遇到了类似的问题。但修复真的非常小。 详情请参考页面:https://springframework.guru/using-the-h2-database-console-in-spring-boot-with-spring-security/。

就我而言,我已将 H2 依赖范围添加为“运行时”。我删除了它,它解决了我的问题。我无法在 H2 控制台中看到表格。

我的 pom 中以前的依赖项是:

<dependency>
    <groupId>com.h2database</groupId>
    <artifactId>h2</artifactId>
    <scope>runtime</scope>
</dependency>

以及解决了我的问题的新依赖项:

<dependency>
    <groupId>com.h2database</groupId>
    <artifactId>h2</artifactId>
</dependency>

【讨论】:

【参考方案8】:

在 2020-09 春季,必须使用 schema.sql 作为创建表的文件名 和 data.sql 用于插入数据,如果不这样做,您的数据将不会显示在 h2 数据库中。

【讨论】:

【参考方案9】:

遇到了类似的问题,H2 控制台使用以下设置启用 驱动类:org.h2.Driver JDBC URL:jdbc:h2:mem:testdb 我仍然无法看到我在 data.sql 文件中创建的表。 我找到了两个解决方案,都对我很有效

    在 application.properties 文件中添加以下属性。 spring.datasource.url=jdbc:h2:mem:testdb

    如果您使用的是 Spring Boot,请将 sql 文件重命名为 schema.sql 2.5.0 或更高版本

【讨论】:

向文档添加参考链接会有所帮助。

以上是关于Spring Boot/H2 控制台未显示我的表的主要内容,如果未能解决你的问题,请参考以下文章

Spring-Boot / H2 将数据库快照写入文件系统

Spring boot h2自动配置不起作用

Spring Boot H2数据库新增修改查询删除

spring boot h2 数据库

Spring Boot /h2-console 使用 Spring Security 1.5.2 抛出 403

Spring boot - h2 DB 测试多次执行脚本