I get error when I run the main class.
Error:
Action: Consider defining a bean of type \'seconds47.service.TopicService\' in your c
Since TopicService is a Service class, you should annotate it with @Service, so that Spring autowires this bean for you. Like so:
TopicService
Service
@Service
@Service public class TopicServiceImplementation implements TopicService { ... }
This will solve your problem.