2016-11-20 18 views
6

ユーレカサーバと春ブーツ1.4.2.RELEASEを実行しようとしているときに、私は次のエラーを取得しています:春ブーツ1.4.2.RELEASE - 例外:org.springframework.beans.factory.NoSuchBeanDefinitionException

2016-11-20 16:25:59.306 INFO 14263 --- [   main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.spring[email protected]2177849e: startup date [Sun Nov 20 16:25:59 CET 2016]; root of context hierarchy 
2016-11-20 16:25:59.581 INFO 14263 --- [   main] f.a.AutowiredAnnotationBeanPostProcessor : JSR-330 'javax.inject.Inject' annotation found and supported for autowiring 
2016-11-20 16:25:59.606 INFO 14263 --- [   main] trationDelegate$BeanPostProcessorChecker : Bean 'configurationPropertiesRebinderAutoConfiguration' of type [class org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration$$EnhancerBySpringCGLIB$$fc4b31a3] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 

    . ____   _   __ _ _ 
/\\/___'_ __ _ _(_)_ __ __ _ \ \ \ \ 
(()\___ | '_ | '_| | '_ \/ _` | \ \ \ \ 
\\/ ___)| |_)| | | | | || (_| | )))) 
    ' |____| .__|_| |_|_| |_\__, |//// 
=========|_|==============|___/=/_/_/_/ 
:: Spring Boot ::  (v1.4.2.RELEASE) 

2016-11-20 16:26:04.988 INFO 14263 --- [   main] i.v.p.s.EurekaServerApplication   : No active profile set, falling back to default profiles: default 
2016-11-20 16:26:05.005 INFO 14263 --- [   main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot[email protected]3e14c16d: startup date [Sun Nov 20 16:26:05 CET 2016]; parent: org.spring[email protected]2177849e 
2016-11-20 16:26:05.589 WARN 14263 --- [   main] o.s.c.a.ConfigurationClassPostProcessor : Cannot enhance @Configuration bean definition 'refreshScope' since its singleton instance has been created too early. The typical cause is a non-static @Bean method with a BeanDefinitionRegistryPostProcessor return type: Consider declaring such methods as 'static'. 
2016-11-20 16:26:05.774 INFO 14263 --- [   main] o.s.cloud.context.scope.GenericScope  : BeanFactory id=05587591-c1ba-31c3-b56f-8b79a2e1951f 
2016-11-20 16:26:05.787 INFO 14263 --- [   main] f.a.AutowiredAnnotationBeanPostProcessor : JSR-330 'javax.inject.Inject' annotation found and supported for autowiring 
2016-11-20 16:26:05.857 INFO 14263 --- [   main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration' of type [class org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration$$EnhancerBySpringCGLIB$$fc4b31a3] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 
2016-11-20 16:26:06.180 INFO 14263 --- [   main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8761 (http) 
2016-11-20 16:26:06.197 INFO 14263 --- [   main] o.apache.catalina.core.StandardService : Starting service Tomcat 
2016-11-20 16:26:06.198 INFO 14263 --- [   main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.6 
2016-11-20 16:26:06.326 INFO 14263 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/]  : Initializing Spring embedded WebApplicationContext 
2016-11-20 16:26:06.327 INFO 14263 --- [ost-startStop-1] o.s.web.context.ContextLoader   : Root WebApplicationContext: initialization completed in 1322 ms 
2016-11-20 16:26:06.347 ERROR 14263 --- [ost-startStop-1] o.s.b.c.embedded.tomcat.TomcatStarter : Error starting Tomcat context. Exception: org.springframework.beans.factory.UnsatisfiedDependencyException. Message: Error creating bean with name 'org.springframework.cloud.netflix.eureka.server.EurekaServerConfiguration': Unsatisfied dependency expressed through field 'applicationInfoManager'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.netflix.appinfo.ApplicationInfoManager' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)} 
2016-11-20 16:26:06.375 WARN 14263 --- [   main] ationConfigEmbeddedWebApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Unable to start embedded container; nested exception is org.springframework.boot.context.embedded.EmbeddedServletContainerException: Unable to start embedded Tomcat 
2016-11-20 16:26:06.483 ERROR 14263 --- [   main] o.s.b.d.LoggingFailureAnalysisReporter : 

*************************** 
APPLICATION FAILED TO START 
*************************** 

Description: 

Field applicationInfoManager in org.springframework.cloud.netflix.eureka.server.EurekaServerConfiguration required a bean of type 'com.netflix.appinfo.ApplicationInfoManager' that could not be found. 


Action: 

Consider defining a bean of type 'com.netflix.appinfo.ApplicationInfoManager' in your configuration. 
ここで

ポンポンファイルです:

<?xml version="1.0" encoding="UTF-8"?> 
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 
    <modelVersion>4.0.0</modelVersion> 

    <groupId>my.test.springMicroservices</groupId> 
    <artifactId>EurekaServer</artifactId> 
    <version>0.0.1-SNAPSHOT</version> 
    <packaging>jar</packaging> 

    <name>EurekaServer</name> 
    <description>Eureka discovery server example</description> 

    <parent> 
     <groupId>org.springframework.boot</groupId> 
     <artifactId>spring-boot-starter-parent</artifactId> 
     <version>1.4.2.RELEASE</version> 
     <relativePath /> 
    </parent> 

    <properties> 
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> 
     <java.version>1.8</java.version> 
    </properties> 

    <dependencies> 
     <dependency> 
      <groupId>org.springframework.boot</groupId> 
      <artifactId>spring-boot-starter-actuator</artifactId> 
     </dependency> 
     <dependency> 
      <groupId>org.springframework.cloud</groupId> 
      <artifactId>spring-cloud-starter-eureka-server</artifactId> 
     </dependency> 

     <dependency> 
      <groupId>org.springframework.boot</groupId> 
      <artifactId>spring-boot-starter-test</artifactId> 
      <scope>test</scope> 
     </dependency> 
    </dependencies> 

    <dependencyManagement> 
     <dependencies> 
      <dependency> 
       <groupId>org.springframework.cloud</groupId> 
       <artifactId>spring-cloud-dependencies</artifactId> 
       <version>Camden.SR2</version> 
       <type>pom</type> 
       <scope>import</scope> 
      </dependency> 
     </dependencies> 
    </dependencyManagement> 

    <build> 
     <plugins> 
      <plugin> 
       <groupId>org.springframework.boot</groupId> 
       <artifactId>spring-boot-maven-plugin</artifactId> 
      </plugin> 
     </plugins> 
    </build> 
</project> 

application.yml

server: 
    port: 8761 
spring: 
    application: 
    name: eureka-server1 
eureka: 
    client: 
    enabled: false 
    fetch-registry: false 

マイ春ブートアプリケーションクラス

import org.springframework.boot.SpringApplication; 
import org.springframework.boot.autoconfigure.SpringBootApplication; 
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer; 

@SpringBootApplication 
@EnableEurekaServer 
public class EurekaServerApplication { 
    public static void main(String[] args) { 
     SpringApplication.run(EurekaServerApplication.class, args); 
    } 
} 

これは私の環境です:

  • MacOSのシエラ10.12.1
  • 春ツール・スイート - バージョン:3.8.2.RELEASE(ビルドID:201610040743 - プラットフォーム:EclipseのNeon.1(4.6.1))

私は逃しましたか何か?事前

+1

'eureka.client.enabled:false'は問題を引き起こしますが、回避策として削除できます。 – Jeff

+2

問題として発生しました:https://github.com/spring-cloud/spring-cloud-netflix/issues/1484 – Jeff

+0

'eureka.client.enabled:false'の削除別のエラーが発生しました: 'メソッドtraceFilterRegistrationのパラメータ0 org.springframework.cloud.netflix.eureka.server.EurekaServerConfigurationで、型 'javax.servlet.Filter'のBeanが見つかりませんでした。 - @ConditionalOnEnabledResourceChainがorg.webjars.WebJarAssetLocatorクラスを見つけられなかったため、 'FreeMarkerAutoConfiguration.FreeMarkerWebConfiguration'のBeanメソッド 'resourceUrlEncodingFilter'がロードされていませんでした。処置:上記の条件を再訪するか、 'javax.servlet.Filter'構成。 – paoloaq

答えて

0

おかげで設定からeureka.client.enabled=falseを削除します。それから、サーバを起動します。