I wrote a Spring Application TemporalConfigurationService (TCS) which runs fine with Spring Boot. It is complete code based configured instead using persistence.xml or context.xml. Now I want to use this API as a library in a non Spring Application. If I try to initilize TCS in a test with...
TemporalConfigurationServiceImpl tcs = new TemporalConfigurationServiceApi()
...all innern repositories and other @Autowired variables are null. How can I reuse my TemporalConfigurationService in other projects?