使用 JNDI 属性进行 tinylog 配置

Usage of JNDI properties for tinylog configuration

我们使用 JNDI-属性(在 Tomcat 网络服务器中设置)来确定阶段 (DEV/TEST/QA/PRD) 以配置一些应用程序详细信息。

现在我们想用外部工具替换自制日志记录,并想试试 tinylog。但是我们想知道是否可以从 JNDI 上下文中读取环境变量来配置 tinylog 设置?

该文档未提及 JNDI 查找。也许基于 Java 的配置可能是解决方案。但是声明式基于文本的配置呢?

任何建议都适用! 谢谢!

tinylog 是适用于所有类型 Java 应用程序的通用日志记录库。没有对上下文查找的原生支持,因为它是特定的 Java EE 功能。但是,您可以在启动时通过 ServletContextListener 加载自定义 tinylog 配置。

@WebListener
public class LoggingInitializer implements ServletContextListener {

    public void contextInitialized(ServletContextEvent event) {
        try {
            ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
            String stage = (String) new InitialContext().lookup("java:comp/env/stage");
            String file = "tinylog_" + stage + ".properties";

            Properties configuration = new Properties();
            try (InputStream stream = classLoader.getResourceAsStream(file)) {
                configuration.load(stream);
            }

            Configuration.replace((Map) configuration);
        } catch (IOException | NamingException ex) {
            Logger.error(ex, "Failed to load tinylog configuration");
        }
    }

    public void contextDestroyed(ServletContextEvent event) { }

}

舞台可以设置为环境变量 context.xml:

<Context>
    <Environment name="stage" value="PROD" type="java.lang.String" />
    <!-- Other Settings -->
</Context>