query: 1.0.6 - Refined naming in `QueryApplicationConfiguration`
authorKai Moritz <kai@juplo.de>
Sun, 9 Jun 2024 07:46:54 +0000 (09:46 +0200)
committerKai Moritz <kai@juplo.de>
Sun, 9 Jun 2024 19:18:29 +0000 (21:18 +0200)
--
streamlined the naming of attributes and parameters

src/main/java/de/juplo/kafka/wordcount/query/QueryApplicationConfiguration.java

index dfc4339..9f6769f 100644 (file)
@@ -20,14 +20,14 @@ public class QueryApplicationConfiguration
        @Bean
        public QueryStreamProcessor streamProcessor(
                        ServerProperties serverProperties,
-                       QueryApplicationProperties properties,
+                       QueryApplicationProperties applicationProperties,
                        ObjectMapper mapper,
                        ConfigurableApplicationContext context) throws IOException
        {
                String host;
                if (serverProperties.getAddress() == null)
                {
-                       HostInfo bootstrapServer = HostInfo.buildFromEndpoint(properties.getBootstrapServer());
+                       HostInfo bootstrapServer = HostInfo.buildFromEndpoint(applicationProperties.getBootstrapServer());
                        Socket socket = new Socket();
                        socket.connect(new InetSocketAddress(bootstrapServer.host(), bootstrapServer.port()));
                        host = socket.getLocalAddress().getHostAddress();
@@ -40,11 +40,11 @@ public class QueryApplicationConfiguration
                Integer port = serverProperties.getPort() == null ? 8080 : serverProperties.getPort();
 
                return new QueryStreamProcessor(
-                               properties.getApplicationId(),
+                               applicationProperties.getApplicationId(),
                                new HostInfo(host, port),
-                               properties.getBootstrapServer(),
-                               properties.getUsersInputTopic(),
-                               properties.getRankingInputTopic(),
+                               applicationProperties.getBootstrapServer(),
+                               applicationProperties.getUsersInputTopic(),
+                               applicationProperties.getRankingInputTopic(),
                                mapper,
                                context);
        }