com.raynigon.ecs.logging.access.AccessLogProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ecs-logging-access Show documentation
Show all versions of ecs-logging-access Show documentation
The ecs-logging-access is a part of the unit-api
The newest version!
package com.raynigon.ecs.logging.access;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.boot.context.properties.ConfigurationProperties;
import java.util.ArrayList;
import java.util.List;
@Data
@NoArgsConstructor
@ConfigurationProperties("raynigon.logging.access")
public class AccessLogProperties {
private List excludeEndpoints = new ArrayList<>();
private boolean exportBody = false;
private int bodySizeLimit = 10_000;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy