使用Mule ESB实现服务弹簧

时间:2013-11-15 09:50:06

标签: mule

我有一个使用服务弹簧的组件,这个spring服务使用层验证器。我用boolean isValide(String value)定义了一个接口,Can'I用MuleESB实现接口?

1 个答案:

答案 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