, :
public interface MasterService {
void someMethod();
}
public class MasterServiceImpl implements MasterService {
private OtherService otherService;
public void someMethod() {
this.otherService.someCallOnOtherService();
}
@Autowired
public void setOtherService(OtherService otherService) {
this.otherService = otherService;
}
}
MasterServiceImpl, , OtherService. , XML- , .
, AOP , . Impl implement . .