gpt4 book ai didi

json - 无法让 Karaf 4.2.6 使用带有 JsonLayout 的 log4j2 记录布局类型

转载 作者:行者123 更新时间:2023-12-01 21:40:04 26 4
gpt4 key购买 nike

我一整天都在做这个,但在尝试了这么多组合之后还是没能正常工作。归根结底,我正在寻找从 Karaf 获取 JSON 日志记录的明确步骤列表。我什至浏览了 Maven Karaf 插件源代码,试图解决这个问题,尽管我可能看得不够远。

我正在使用 Karaf 4.2.6。我正在尝试使用版本 4.2.6 的 karaf-maven-plugin 构建 Karaf 部署。

如果我将各种 appender 的 layout.type 更改为 JsonLayout,我会得到一个堆栈跟踪,说它无法加载 JSON 布局,因为我缺少一个类。 java.lang.NoClassDefFoundError: com/fasterxml/jackson/databind/ser/FilterProvider.

我查看了 jar org.ops4j.pax.logging/pax-logging-log4j2/1.10.2,发现我需要 3 个 Jackson jar,Core v2.8.7,Annotations v2.8.0,和数据绑定(bind) v2.8.7。

我一直试图在 etc/startup.properties 中获取这些文件,起始级别为 5 或起始级别为 8,以便它们为 org.ops4j 做好准备。 pax.logging/pax-logging-log4j2/1.10.2 启动时。我确保它们位于正确位置的 system 文件夹中。大多数时候,如果我确实将它们放入 etc/startup.properties,它们的起始级别为 30。我将它们放在具有正确起始级别的功能中,但它们要么启动良好在使用 startup.properties 或从未出现过之后。我尝试了很多可能的组合,startupBundlesstartupFeaturesbootFeatures,但在 startup.properties 中什么也没有。我不知道 startup.properties 的内容是如何生成的。有时,我想要的应用程序功能甚至无法启动,因为如果我只是将对这些 jar 的引用放在 startup.properties 中,则有关配置的某些内容在设置日志记录时被阻止,例如


mvn\:com.fasterxml.jackson.core/jackson-core/2.8.7 = 5

下面是我的 pom.xml,其中注释掉了之前尝试的一些内容:

<?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>

<properties>
<my_version>0.0.0</my_version>
<myapp_common_version>0.0.0</myapp_common_version>
</properties>

<groupId>com.me.myapp</groupId>
<artifactId>myapp-karaf</artifactId>
<version>${my_version}</version>
<packaging>karaf-assembly</packaging>

<name>myapp-karaf</name>
<description>myapp-karaf details</description>

<repositories>
<!-- Apache ServiceMix repository (for region) -->
<repository>
<id>apache.servicemix.m2</id>
<name>Apache ServiceMix M2 repository</name>
<url>http://svn.apache.org/repos/asf/servicemix/m2-repo</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<!-- OPS4J SNAPSHOT repository -->
<repository>
<id>ops4j.sonatype.snapshots.deploy</id>
<name>OPS4J snapshot repository</name>
<url>https://oss.sonatype.org/content/repositories/ops4j-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<!-- Apache SNAPSHOT -->
<repository>
<id>apache.snapshots.deploy</id>
<name>Apache snapshot repository</name>
<url>https://repository.apache.org/content/groups/snapshots-group</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.apache.karaf.features</groupId>
<artifactId>framework</artifactId>
<version>4.2.6</version>
<type>kar</type>
</dependency>
<dependency>
<groupId>org.apache.karaf.features</groupId>
<artifactId>standard</artifactId>
<version>4.2.6</version>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>org.apache.karaf.features</groupId>
<artifactId>spring</artifactId>
<version>4.2.6</version>
<classifier>features</classifier>
<type>xml</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.features</groupId>
<artifactId>enterprise</artifactId>
<version>4.2.6</version>
<classifier>features</classifier>
<type>xml</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.me.myapp</groupId>
<artifactId>myapp-common-feature</artifactId>
<version>${myapp_common_version}</version>
<classifier>features</classifier>
<type>xml</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.me.myapp</groupId>
<artifactId>myapp-feature</artifactId>
<!-- Annoyingly this cannot come from an environment variable -->
<version>${my_version}</version>
<classifier>features</classifier>
<type>xml</type>
<scope>runtime</scope>
</dependency>
</dependencies>

<build>
<resources>
<resource>
<directory>${env.MYAPP_SOURCE_HOME}/myapp-common/server/karaf/assembly</directory>
<filtering>false</filtering>
<includes>
<include>**/*</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
<includes>
<include>**/*</include>
</includes>
</resource>
<resource>
<directory>src/main/filtered-resources</directory>
<filtering>true</filtering>
<includes>
<include>**/*</include>
</includes>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<version>4.2.6</version>
<extensions>true</extensions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>process-resources</id>
<goals>
<goal>resources</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<configuration>
<startupBundles> <!--
<bundle>mvn:com.fasterxml.jackson.core/jackson-annotations/2.8.0</bundle>
<bundle>mvn:com.fasterxml.jackson.core/jackson-core/2.8.7</bundle>
<bundle>mvn:com.fasterxml.jackson.core/jackson-databind/2.8.7</bundle> -->
</startupBundles>
<installedFeatures>
</installedFeatures>
<startupFeatures>
<feature>com.me.myapp/${my_version}</feature>
</startupFeatures>
<bootFeatures>
<feature>com.me.myapp.logging.provider/${myapp_common_version}</feature>
<!-- standard distribution -->
<!-- <feature>standard</feature> -->
<!-- minimal distribution -->
<!--<feature>minimal</feature>-->
<feature>jaas</feature>
<feature>shell</feature>
<feature>ssh</feature>
<feature>management</feature>
<feature>bundle</feature>
<feature>config</feature>
<feature>deployer</feature>
<feature>diagnostic</feature>
<feature>instance</feature>
<feature>kar</feature>
<feature>wrap</feature>
<feature>log</feature>
<feature>package</feature>
<feature>service</feature>
<feature>system</feature>

</bootFeatures>
<javase>1.8</javase>
</configuration>
</plugin>
</plugins>
</build>

</project>

com.me.myapp.logging.provider 包含具有适当启动级别的 Jackson jar 。

我在 Kubernetes 中运行我的容器,并希望 Kubernetes 中的标准日志收集能够正常工作。我在日志收集器上使用一个额外的插件来至少将一些东西分离成 JSON 格式,但它很容易出错,我宁愿只从 JSON 格式的日志开始,而不是稍后在下游处理,这样我就可以分离组件日志,例如执行操作的人,在日志记录时。

我在 Stack Overflow 上进行了搜索,在 Google 上进行了搜索,并找到了提示,但没有找到解决方案的明确步骤。我知道这里没有明确的文件列表,但是,正如我所说,我经历了很多组合。任何帮助将非常感激。我还将在 Karaf 用户组上发帖。

最佳答案

好的,几天后,我想出了所有需要做的事情。感谢@GrzegorzGrzybek 的帮助。

我需要以下几行

mvn\:org.ops4j.pax.logging/pax-logging-log4j2-extra/1.11.4 = 8
mvn\:com.fasterxml.jackson.core/jackson-core/2.9.10 = 8
mvn\:com.fasterxml.jackson.core/jackson-annotations/2.9.10 = 8
mvn\:com.fasterxml.jackson.core/jackson-databind/2.9.10 = 8

添加到我的 etc/startup.properties .如果我只是编辑文件以添加它们,并确保我在 system 中有这些文件存储库,它不会工作。不知道,在 etc 的其他地方没有输入一些条目配置,因此容器无法启动,或者某些功能集在 wrap 之前启动处理程序已安装,因此整个容器将停止运行。

我尝试了很多组合,但最终找到了如何将东西放入 etc/startup.properties 中.我将我想要的 bundle 放入它们自己的功能中,并具有我希望它们拥有的起始级别。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<features xmlns="http://karaf.apache.org/xmlns/features/v1.3.0" name="myapp-common-container-feature">
<feature name="com.me.myapp.logging.provider" version="0.12.0" description="MyApp Logging Provider">
<bundle start-level="8">mvn:com.fasterxml.jackson.core/jackson-annotations/2.9.10</bundle>
<bundle start-level="8">mvn:com.fasterxml.jackson.core/jackson-core/2.9.10</bundle>
<bundle start-level="8">mvn:com.fasterxml.jackson.core/jackson-databind/2.9.10</bundle>
<bundle start-level="8">mvn:org.ops4j.pax.logging/pax-logging-log4j2-extra/1.11.4</bundle>
</feature>
</features>

注意 start-level属性。

然后,在我的程序集 POM 中,我放置了以下依赖项:

        <dependency>
<groupId>com.me.myapp</groupId>
<artifactId>myapp-common-container-feature</artifactId>
<version>0.12.0</version>
<classifier>features</classifier>
<type>xml</type>
<scope>compile</scope>
</dependency>

这里重要的一行是<scope>compile</scope> . compile 中的功能范围将放在 startup.properties 中如果放在 <startupFeatures />在 Karaf Maven 插件的配置中。

            <plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<configuration>
<startupFeatures>
<feature>com.me.myapp.logging.provider/0.12.0</feature>
</startupFeatures>

现在容器以 JSON 日志记录启动。

关于json - 无法让 Karaf 4.2.6 使用带有 JsonLayout 的 log4j2 记录布局类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61493642/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com