You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In general we would prefer not to use Spring for the Kafka Streams apps, as these are pretty lightweight and don't really warrant pulling Spring in. The Notifier app is currently based on Spring Boot. We would like to remove Spring from this particular app.
The text was updated successfully, but these errors were encountered:
This involved creating some JSON-based serializers and deserializers,
along with their corresponding unit tests.
Also, I used kafka-junit to implement the unit a2m mapper unit test. After
doing so I noticed an interaction between the mock broker I am using and
the mock broker that the notifier app is using. I am not sure exactly what
the interaction is at this point, but I suspect it may be related to
the notifier tests setting system properties. Again that's just a guess.
At any rate I simply disabled the unit tests for the two notifier classes
as issue #367 is to remove Spring from the notifier. I will pick that
issue up after this one and see if that eliminates the interaction.
Finally please see my comments around JsonPojoSerde and the related
serializer and deserializer. I deprecated these. I explain in a comment in
JsonPojoDeserializer.
In general we would prefer not to use Spring for the Kafka Streams apps, as these are pretty lightweight and don't really warrant pulling Spring in. The Notifier app is currently based on Spring Boot. We would like to remove Spring from this particular app.
The text was updated successfully, but these errors were encountered: