我有一个使用服务弹簧的组件,这个spring服务使用层验证器。我用boolean isValide(String value)定义了一个接口,Can'I用MuleESB实现接口?
答案 0 :(得分:0)
类似
@Autowired
private MuleContext muleContext;
@Override
public boolean isValide(String arg0) {
try {
MuleClient muleClient = new MuleClient(muleContext);
} catch (MuleException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
// TODO Auto-generated method stub
return false;
}
在http://www.mulesoft.org/documentation-3.2/display/32X/Hello+World+Example
中