I have a config class B which uses the @Import annotation to import config class A, in this manner
@Configuration @Import({A.class}) public class B { ... }
Now I have a class C which extends class B, but I am not able to access methods of class A from that. How can I do this ?
P.s I can only edit class C since rest are libraries
2.1m questions
2.1m answers
60 comments
57.0k users