5 changed files with 67 additions and 54 deletions
@ -0,0 +1,54 @@
@@ -0,0 +1,54 @@
|
||||
/* |
||||
* Copyright 2012-2021 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.logging.log4j2; |
||||
|
||||
import java.util.Collections; |
||||
import java.util.Map; |
||||
|
||||
import org.apache.logging.log4j.core.util.ShutdownCallbackRegistry; |
||||
import org.apache.logging.log4j.util.BiConsumer; |
||||
import org.apache.logging.log4j.util.PropertySource; |
||||
|
||||
/** |
||||
* Spring Boot {@link PropertySource} that disables Log4j2's shutdown hook. |
||||
* |
||||
* @author Andy Wilkinson |
||||
* @since 2.5.2 |
||||
*/ |
||||
public class SpringBootPropertySource implements PropertySource { |
||||
|
||||
private static final String PREFIX = "log4j."; |
||||
|
||||
private final Map<String, String> properties = Collections |
||||
.singletonMap(ShutdownCallbackRegistry.SHUTDOWN_HOOK_ENABLED, "false"); |
||||
|
||||
@Override |
||||
public void forEach(BiConsumer<String, String> action) { |
||||
this.properties.forEach((key, value) -> action.accept(key, value)); |
||||
} |
||||
|
||||
@Override |
||||
public CharSequence getNormalForm(Iterable<? extends CharSequence> tokens) { |
||||
return PREFIX + Util.joinAsCamelCase(tokens); |
||||
} |
||||
|
||||
@Override |
||||
public int getPriority() { |
||||
return -200; |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1 @@
@@ -0,0 +1 @@
|
||||
org.springframework.boot.logging.log4j2.SpringBootPropertySource |
||||
@ -1,42 +0,0 @@
@@ -1,42 +0,0 @@
|
||||
/* |
||||
* Copyright 2012-2019 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.logging.log4j2; |
||||
|
||||
import java.io.ByteArrayInputStream; |
||||
import java.io.IOException; |
||||
|
||||
import org.apache.logging.log4j.core.LoggerContext; |
||||
import org.apache.logging.log4j.core.config.ConfigurationSource; |
||||
import org.junit.jupiter.api.Test; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Tests for {@link SpringBootConfigurationFactory}. |
||||
* |
||||
* @author Andy Wilkinson |
||||
*/ |
||||
class SpringBootConfigurationFactoryTests { |
||||
|
||||
@Test |
||||
void producesConfigurationWithShutdownHookDisabled() throws IOException { |
||||
ConfigurationSource source = new ConfigurationSource(new ByteArrayInputStream(new byte[0])); |
||||
assertThat(new SpringBootConfigurationFactory().getConfiguration(new LoggerContext(""), source) |
||||
.isShutdownHookEnabled()).isFalse(); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue