├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ └── ci.yaml ├── .gitignore ├── .mvn └── wrapper │ └── maven-wrapper.properties ├── LICENSE ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml ├── scripts └── integration_test └── src ├── main ├── java │ └── com │ │ └── alibaba │ │ └── ttl │ │ └── log4j2 │ │ └── TtlThreadContextMap.java └── resources │ └── log4j2.component.properties ├── test ├── java │ └── com │ │ └── alibaba │ │ └── ttl │ │ └── log4j2 │ │ ├── AbstractTest4StdOut.java │ │ ├── Log4j2Demo.java │ │ ├── Log4j2TtlThreadContextMapTest.java │ │ ├── Slf4jMdcDemo.java │ │ └── Slf4jMdcTest.java └── resources │ └── log4j2.xml └── versions-rules.xml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/README.md -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/pom.xml -------------------------------------------------------------------------------- /scripts/integration_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/scripts/integration_test -------------------------------------------------------------------------------- /src/main/java/com/alibaba/ttl/log4j2/TtlThreadContextMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/src/main/java/com/alibaba/ttl/log4j2/TtlThreadContextMap.java -------------------------------------------------------------------------------- /src/main/resources/log4j2.component.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/src/main/resources/log4j2.component.properties -------------------------------------------------------------------------------- /src/test/java/com/alibaba/ttl/log4j2/AbstractTest4StdOut.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/src/test/java/com/alibaba/ttl/log4j2/AbstractTest4StdOut.java -------------------------------------------------------------------------------- /src/test/java/com/alibaba/ttl/log4j2/Log4j2Demo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/src/test/java/com/alibaba/ttl/log4j2/Log4j2Demo.java -------------------------------------------------------------------------------- /src/test/java/com/alibaba/ttl/log4j2/Log4j2TtlThreadContextMapTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/src/test/java/com/alibaba/ttl/log4j2/Log4j2TtlThreadContextMapTest.java -------------------------------------------------------------------------------- /src/test/java/com/alibaba/ttl/log4j2/Slf4jMdcDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/src/test/java/com/alibaba/ttl/log4j2/Slf4jMdcDemo.java -------------------------------------------------------------------------------- /src/test/java/com/alibaba/ttl/log4j2/Slf4jMdcTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/src/test/java/com/alibaba/ttl/log4j2/Slf4jMdcTest.java -------------------------------------------------------------------------------- /src/test/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/src/test/resources/log4j2.xml -------------------------------------------------------------------------------- /src/versions-rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldratlee/log4j2-ttl-thread-context-map/HEAD/src/versions-rules.xml --------------------------------------------------------------------------------