How to exactly work the Spring Inheritance-based Proxies configuration?
I am studying for the Spring Core certification and I am finding some doubts related to the proxying notion. So on the study material I find the following quiz: There is a Java configuration class that contains the following methods: @Bean public AccountRepository accountRepository(){ return new JdbcAccountRepository(); } @Bean public TransferService transferService1() { TransferServiceImpl service = new TransferServiceImpl(); service.setAccountRepository(accountRepository()); return service; } @Bean public TransferService transferService2() { return new TransferServiceImpl( new