![JAR search and dependency download from the Maven repository](/logo.png)
net.rakugakibox.spring.boot.logback.access.LogbackAccessProperties Maven / Gradle / Ivy
package net.rakugakibox.spring.boot.logback.access;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* The configuration properties for Logback-access.
*/
@Data
@ConfigurationProperties("logback.access")
public class LogbackAccessProperties {
/**
* Whether to enable auto-configuration.
*/
private boolean enabled = true;
/**
* The location of the configuration file.
* Auto-detected by default:
* 1. "classpath:logback-access-test.xml"
* 2. "classpath:logback-access.xml"
* 3. "classpath:logback-access-test-spring.xml"
* 4. "classpath:logback-access-spring.xml"
* 5. "classpath:net/rakugakibox/spring/boot/logback/access/logback-access-spring.xml"
*/
private String config;
/**
* Whether to use the server port (HttpServletRequest#getServerPort())
* instead of the local port (HttpServletRequest#getLocalPort()) within IAccessEvent#getLocalPort().
*/
private boolean useServerPortInsteadOfLocalPort = true;
/**
* for Tomcat.
*/
private Tomcat tomcat = new Tomcat();
private TeeFilterProperties teeFilter = new TeeFilterProperties();
/**
* for Tomcat.
*/
@Data
public static class Tomcat {
/**
* Whether to enable request attributes to work with the RemoteIpValve enabled with "server.useForwardHeaders".
* Defaults to the presence of the RemoteIpValve.
*/
private Boolean enableRequestAttributes;
}
/**
* Logback TeeFilter required to to log full request and response including payload.
*/
@Data
public static class TeeFilterProperties {
private boolean enabled = false;
private String includes;
private String excludes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy