<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-validation</artifactId>
+ </dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;
+import javax.validation.constraints.NotEmpty;
+import javax.validation.constraints.NotNull;
+
@ConfigurationProperties(prefix = "producer")
@Getter
@Setter
public class ApplicationProperties
{
+ @NotNull
+ @NotEmpty
private String bootstrapServer;
+ @NotNull
+ @NotEmpty
private String clientId;
+ @NotNull
+ @NotEmpty
private String topic;
private Integer partition;
+ @NotNull
+ @NotEmpty
private String acks;
+ @NotNull
private Integer batchSize;
+ @NotNull
private Integer lingerMs;
+ @NotNull
+ @NotEmpty
private String compressionType;
}