无法解析类型ID' size-rotating-file'成为[simple type,class io.dropwizard.logging.AppenderFactory]的子类型

时间:2016-06-12 11:53:23

标签: maven logging pom.xml dropwizard

我在Dropwizard项目中使用日志记录附加程序时出现此错误。 无法解析类型ID' size-rotating-file'成为[simple type,class io.dropwizard.logging.AppenderFactory]的子类型  在[资料来源:N / A; line:-1,column:-1](通过引用链:com.flipkart.apl.config.EuropaConfiguration [" logging"] - > io.dropwizard.logging.LoggingFactory [" appenders& #34;])

我在一些较旧的帖子中发现了类似的问题,但他们使用的是maven-shaded-plugin,我没有在我的pom.xml中使用。这是我的pom.xml依赖项。

<dependencies>
<dependency>
  <groupId>io.dropwizard</groupId>
  <artifactId>dropwizard-core</artifactId>
  <version>0.7.1</version>
</dependency>

<dependency>
  <groupId>io.dropwizard</groupId>
  <artifactId>dropwizard-hibernate</artifactId>
  <version>0.7.1</version>
</dependency>

<dependency>
  <groupId>org.apache.kafka</groupId>
  <artifactId>kafka-clients</artifactId>
  <version>0.8.2.0</version>
</dependency>

<dependency>
  <groupId>com.googlecode.json-simple</groupId>
  <artifactId>json-simple</artifactId>
  <version>1.1</version>
</dependency>

<dependency>
  <groupId>com.restbus</groupId>
  <artifactId>dropwizard-hibernate-plugin</artifactId>
  <version>1.1.1</version>
  <exclusions>
    <exclusion>
      <groupId>javax.ws.rs</groupId>
      <artifactId>javax.ws.rs-api</artifactId>
    </exclusion>
    <exclusion>
      <groupId>com.sun.jersey</groupId>
      <artifactId>jersey-core</artifactId>
    </exclusion>
    <exclusion>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
    </exclusion>
    <exclusion>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-log4j12</artifactId>
    </exclusion>
  </exclusions>
</dependency>


<dependency>
  <groupId>fk.sp.common</groupId>
  <artifactId>event-handler</artifactId>
  <version>1.7.18</version>
  <exclusions>
    <exclusion>
      <groupId>javax.ws.rs</groupId>
      <artifactId>javax.ws.rs-api</artifactId>
    </exclusion>
    <exclusion>
      <groupId>com.sun.jersey</groupId>
      <artifactId>jersey-core</artifactId>
    </exclusion>
    <exclusion>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
    </exclusion>
    <exclusion>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-log4j12</artifactId>
    </exclusion>
  </exclusions>
</dependency>


<dependency>
  <groupId>fk.sp.common</groupId>
  <artifactId>spring-jpa</artifactId>
  <version>1.7.18</version>
  <exclusions>
    <exclusion>
      <groupId>javax.ws.rs</groupId>
      <artifactId>javax.ws.rs-api</artifactId>
    </exclusion>
    <exclusion>
      <groupId>com.sun.jersey</groupId>
      <artifactId>jersey-core</artifactId>
    </exclusion>
    <exclusion>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
    </exclusion>
    <exclusion>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-log4j12</artifactId>
    </exclusion>
  </exclusions>
</dependency>

<dependency>
  <groupId>fk.sp.common</groupId>
  <artifactId>common-extensions</artifactId>
  <version>1.7.18</version>
  <exclusions>
    <exclusion>
      <groupId>javax.ws.rs</groupId>
      <artifactId>javax.ws.rs-api</artifactId>
    </exclusion>
    <exclusion>
      <groupId>com.sun.jersey</groupId>
      <artifactId>jersey-core</artifactId>
    </exclusion>
    <exclusion>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
    </exclusion>
    <exclusion>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-log4j12</artifactId>
    </exclusion>
  </exclusions>
</dependency>

<dependency>
  <groupId>fk.sp.common</groupId>
  <artifactId>restbus-sender</artifactId>
  <version>1.7.18</version>
  <exclusions>
    <exclusion>
      <groupId>javax.ws.rs</groupId>
      <artifactId>javax.ws.rs-api</artifactId>
    </exclusion>
    <exclusion>
      <groupId>com.sun.jersey</groupId>
      <artifactId>jersey-core</artifactId>
    </exclusion>
    <exclusion>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
    </exclusion>
    <exclusion>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-log4j12</artifactId>
    </exclusion>
  </exclusions>
</dependency>

<dependency>
  <groupId>com.restbus</groupId>
  <artifactId>restbus-client</artifactId>
  <version>1.0.3</version>
  <exclusions>
    <!-- In order to use the log4j-over-slf4j module, we must ensure
    that log4j and slf4j-log4j12 are not in the classpath -->
    <exclusion>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
    </exclusion>
    <exclusion>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-log4j12</artifactId>
    </exclusion>
    <!-- excluding org.jboss.netty because maven can't detect it's collision with io.netty -->
    <exclusion>
      <groupId>org.jboss.netty</groupId>
      <artifactId>netty</artifactId>
    </exclusion>
  </exclusions>
</dependency>

<dependency>
  <groupId>mysql</groupId>
  <artifactId>mysql-connector-java</artifactId>
  <version>5.1.28</version>
  <scope>runtime</scope>
</dependency>

<dependency>
  <groupId>junit</groupId>
  <artifactId>junit</artifactId>
  <version>3.8.1</version>
  <scope>test</scope>
</dependency>

                    org.codehaus.mojo         EXEC - Maven的插件         1.2.1                    com.flipkart.apl.Europa                        服务器             europa.yml                           

  <plugin>
    <artifactId>maven-assembly-plugin</artifactId>
    <configuration>
      <archive>
        <manifest>
          <mainClass>com.flipkart.apl.Europa</mainClass>
        </manifest>
      </archive>
      <descriptorRefs>
        <descriptorRef>jar-with-dependencies</descriptorRef>
      </descriptorRefs>
    </configuration>
  </plugin>

  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.1</version>
    <configuration>
      <source>1.7</source>
      <target>1.7</target>
      <encoding>UTF-8</encoding>
    </configuration>
  </plugin>
</plugins>

被修改

logging:  
    level: INFO  
    loggers:  
      com.flipkart.apl: INFO  
appenders:    
    - type: size-rotating-file  
      threshold: ALL  
      logFormat: "%-5p [%d{ISO8601}] [%X{reqId} %X{txnId}] %replace(%c: %m){'\n', '\n '}%n%replace(%ex){'(?m)^(.)',' $1'}%nopex"  
      currentLogFilename: /var/log/fk-apl-europa/europa.log  
      archivedLogFilenamePattern: /var/log/fk-apl-europa/europa%d{yyyy-MM-dd-HH}-%i.log.gz  
      maxFileSize: "100mb"  
      maxArchivedDataSize: "1gb"  
  - type: console  
      logFormat: "%-5p [%d{ISO8601}] [%X{reqId} %X{txnId}] %c: %m\n%ex"  
      threshold: INFO  

0 个答案:

没有答案