java 接口bean_使用接口java返回的类中的方法(spring bean)

我有一个Controller,它调用如下所示的接口:

class controllerA{

@Autowired

public iService interfaceService;

public void methodController(){

String param1 = new String("example1");

String param2 = new String("example2");

this.interfaceService.getServiceA().methodA(param1,param2);

}

}那么,我的界面是:

public interface iService {

Class getServiceA();

}并执行:

public class iServiceImpl implements iService {

@Autowired

private ApplicationContext appContext;

public class getServiceA(){

return appContext.getType("serviceA").cast(appContext.getBean("serviceA"));

}

}和applicationContext-service.xml(1):(固定)

而applicationContext-service.xml(2)改变了这一点:

这些xml在编译时随maven profile改变。

我的问题是,无法在控制器上调用serviceA.methodA(param1,param2),并且使用不同的配置进行探测。

上下文正确地注入bean,但我如何调用控制器上的服务的方法?

无法返回在serviceA上实现的接口其他接口,因为该服务具有静态方法...

谢谢!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值