Orientdb-具有嵌入式jetty的Spring引导应用程序无法启动,因为它无法绑定到属性

Orientdb-具有嵌入式jetty的Spring引导应用程序无法启动,因为它无法绑定到属性,spring,spring-mvc,spring-boot,orientdb,embedded-jetty,Spring,Spring Mvc,Spring Boot,Orientdb,Embedded Jetty,我有一个spring boot应用程序,我刚刚使用Orientdb作为我的NoSQL数据库构建,该应用程序运行良好,直到我添加了Orientdb依赖项,使我能够使用Orientdb的Java api。 我尝试一个接一个地删除依赖项,发现每次添加此特定依赖项时都会出现错误 <dependency> <groupId>com.orientechnologies</groupId> <artifa

我有一个spring boot应用程序,我刚刚使用Orientdb作为我的NoSQL数据库构建,该应用程序运行良好,直到我添加了Orientdb依赖项,使我能够使用Orientdb的Java api。 我尝试一个接一个地删除依赖项,发现每次添加此特定依赖项时都会出现错误

        <dependency>
            <groupId>com.orientechnologies</groupId>
            <artifactId>orientdb-graphdb</artifactId>
            <version>1.7.10</version>
            <type>jar</type>
        </dependency>

你也运行了orientdb的嵌入式服务器吗?没有。我让orientdb服务器与我的应用程序分开运行
org.springframework.context.ApplicationContextException: Unable to start embedded container; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'jettyEmbeddedServletContainerFactory' defined in class path resource [org/springframework/boot/autoconfigure/web/EmbeddedServletContainerAutoConfiguration$EmbeddedJetty.class]: Initialization of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private org.springframework.boot.autoconfigure.web.ServerProperties org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration.properties; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'serverProperties': Could not bind properties to [unknown] (target=server, ignoreInvalidFields=false, ignoreUnknownFields=false, ignoreNestedProperties=false); nested exception is javax.validation.ValidationException: HV000041: Call to TraversableResolver.isReachable() threw an exception.
    at org.springframework.boot.context.embedded.EmbeddedWebApplicationContext.onRefresh(EmbeddedWebApplicationContext.java:133)
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:474)
    at org.springframework.boot.context.embedded.EmbeddedWebApplicationContext.refresh(EmbeddedWebApplicationContext.java:118)
    at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:691)
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:321)
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:961)
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:950)