我有一个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上实现的接口其他接口,因为该服务具有静态方法...
谢谢!