Validierung erfolgt über spring-boot-starter-validation
[demos/kafka/training] / src / main / java / de / juplo / kafka / Application.java
index 7cfe268..de4b66d 100644 (file)
@@ -5,8 +5,6 @@ import org.springframework.boot.SpringApplication;
 import org.springframework.boot.autoconfigure.SpringBootApplication;
 import org.springframework.boot.context.properties.EnableConfigurationProperties;
 import org.springframework.context.annotation.Bean;
-import org.springframework.http.converter.json.Jackson2ObjectMapperBuilder;
-import org.springframework.util.Assert;
 
 import java.util.concurrent.Executors;
 
@@ -22,11 +20,6 @@ public class Application
   @Bean
   public EndlessConsumer consumer()
   {
-    Assert.hasText(properties.getBootstrapServer(), "consumer.bootstrap-server must be set");
-    Assert.hasText(properties.getGroupId(), "consumer.group-id must be set");
-    Assert.hasText(properties.getClientId(), "consumer.client-id must be set");
-    Assert.hasText(properties.getTopic(), "consumer.topic must be set");
-
     EndlessConsumer consumer =
         new EndlessConsumer(
             Executors.newFixedThreadPool(1),
@@ -41,16 +34,6 @@ public class Application
     return consumer;
   }
 
-  @Bean
-  public Jackson2ObjectMapperBuilder jackson2ObjectMapperBuilder()
-  {
-    return
-        new Jackson2ObjectMapperBuilder().serializers(
-            new TopicPartitionSerializer(),
-            new PartitionStatisticsSerializer());
-  }
-
-
   public static void main(String[] args)
   {
     SpringApplication.run(Application.class, args);