I am using Spring @Configuration annotation to configure my application.
@Configuration
Currently, I have a single @Configuration class where all my beans are
You should be able to autowire them:
@Configuration public class Conf2 { @Autowired Conf1 conf1; ... }
Alternatively, you can autowire beans rather than configurations:
@Configuration public class Conf2 { @Autowired Foo foo; ... }