2

当通过 Spring 配置 Atomikos 时,不需要 jta.properties 或 transactions.properties 文件。尽管如此,Atomikos 还是从打印到 stderr 的以下消息开始:

No properties path set - looking for transactions.properties in classpath...
transactions.properties not found - looking for jta.properties in classpath...
Failed to open transactions properties file - using default values

它看起来好像没有使用 Spring 配置——尽管显然一切都很好。有谁知道如何摆脱这个,所以我最终不会被问到 1.000 次?

有没有办法从特定组件或 jar 重定向标准错误?

4

2 回答 2

5

您需要将系统属性设置com.atomikos.icatch.hide_init_file_path为任何值。在 java 命令行上执行此操作。在 Maven 中,您可以通过将命令行 arg 传递给 surefire 来执行此操作,如下所示:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <configuration>
        <argLine>-Dcom.atomikos.icatch.hide_init_file_path=true</argLine>
    </configuration>
</plugin>

更新:在 Spring 配置文件中,您可以像这样设置属性:

<bean id="atomikosSystemProps" class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
    <property name="targetObject">
        <!-- System.getProperties() -->
        <bean class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
            <property name="targetClass" value="java.lang.System" />
            <property name="targetMethod" value="getProperties" />
        </bean>
    </property>
    <property name="targetMethod" value="putAll" />
    <property name="arguments">
        <!-- The new Properties -->
        <util:properties>
            <prop key="com.atomikos.icatch.hide_init_file_path">true</prop>
        </util:properties>
    </property>
</bean>

只要记住让你的 Atomikos bean “依赖”这个 bean,这样实例化的顺序就正确了。

于 2010-07-16T14:40:16.070 回答
1

Atomikos 使用SLF4J记录日志。如果仅使用 SLF4J 记录此依赖项,则可以使用 SLF4J 的 NOP binder,不会记录任何内容。可能不是你想要的,但很简单。

您可以配置 SLF4J 的后端记录器以忽略特定包中的日志消息。一个将 logback 作为 SLF4J' 后端记录器的示例:

<logger name="com.atomikos.something" level="OFF"/>

我在这里写了一篇关于 SLF4J 和不同后端记录器的教程

于 2010-06-10T22:15:26.653 回答