* Added test class for a simple shallow copy and deep copy * Added test class for a simple shallow copy and deep copy * refactor naming of test method * formatted * refactor test whenIsAShallowCopyDoneByCopyConstructor_thenImmutableObjectWillNotChange * Renamed package and added md file * refactor README.md * first push * refactor * Revert "refactor README.md" This reverts commiteae77c453b. * Revert "Renamed package and added md file" This reverts commit42c6f97cbd. * Revert "refactor test whenIsAShallowCopyDoneByCopyConstructor_thenImmutableObjectWillNotChange" This reverts commit44fb57fe2b. * Revert "formatted" This reverts commit44be87ef25. * Revert "refactor naming of test method" This reverts commit6133c31057. * Revert "Added test class for a simple shallow copy and deep copy" This reverts commit2cae083578. * Revert "Added test class for a simple shallow copy and deep copy" This reverts commitf43312e2c1. * Merge prohect java-supplier-callable to project core-java-lambdas * adjusted package name * removed AbstractAgeCalculator.java * added test for supplier-callable * first push for article "Implementing Retry In Kafka Consumer" Co-authored-by: Cesare <cesare.valenti@hotmail.com>
15 lines
504 B
Java
15 lines
504 B
Java
package com.baeldung.spring.kafka;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.context.annotation.Import;
|
|
|
|
@SpringBootApplication
|
|
@Import(value = { KafkaTopicConfig.class, KafkaConsumerConfig.class, KafkaProducerConfig.class })
|
|
public class RetryableApplicationKafkaApp {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(RetryableApplicationKafkaApp.class, args);
|
|
}
|
|
}
|