美文网首页
Configuring Data Hub Adapter

Configuring Data Hub Adapter

作者: 炼心之旅 | 来源:发表于2018-08-28 16:11 被阅读0次
hybris中安装并配置Data Hub Adapter
    在<HYBRIS_HOME>/config/localextensions.xml中添加Data Hub Adapter的扩展应用
        <extensions>
              <extension dir="${HYBRIS_HOME}/bin/ext-integration/datahubadapter" />        
        </extensions>
    ***添加之后,不需要执行update,但是需要执行ant clean all***
    在local.properties属性配置文件中添加DataHub属性
        # The base URL of the DataHub instance
        datahubadapter.datahuboutbound.url=http://localhost:8080/datahub-webapp/v1

        # The username and password for basic authentication of DataHub adapter with the DataHub server instance
        datahubadapter.datahuboutbound.user=<adminuser>
        datahubadapter.datahuboutbound.password=<adminpass>
    ***adminuser,adminpass需要再设置认证的时候设定***
    重启Hybris

在已安装的Data Hub上配置Adapter的连接
    更新Data Hub Tomcat classpath下的local.properties属性文件
        datahub.extension.exportURL=http://localhost:9001/datahubadapter
        datahub.extension.userName=<user>
        datahub.extension.password=<pass>
    重启Data Hub

相关文章

网友评论

      本文标题:Configuring Data Hub Adapter

      本文链接:https://www.haomeiwen.com/subject/inkqwftx.html