在Teiid Designer中启动服务器后无法运行此命令。
// JS
crApp_WCF_Drtvs.directive("fileread", [function () {
return {
scope: {
gridApi: '='
},
link: function ($scope, $elm, $attrs) {
$elm.on('change', function (changeEvent) {
// console.log($scope.gridApi);
});
}
}
}]);
// HTML
<input type="file"
accept=".xls,.xlsx,.ods"
fileread
opts="vm.gridOptions"
// give gridApi scope variable for fileread directive to get
grid-api="gridApi"
multiple="false" />
是否还有其他方法可以添加Teiid。 我也没有在设计师中获得Teiid实例。
我正在使用Teiid Designer 10.4 Teiid 9.2 Jboss EAP 7
答案 0 :(得分:1)
您不必运行该命令。在配置服务器的位置,配置为使用“standalone-teiid.xml”而不是“standalone.xml”。
或者,您可以通过执行
在命令行中在Designer之外启动Teiid服务器<wildfly>/bin/standalone.sh -c standalone-teiid.xml
然后在Designer中,您需要配置以便连接到远程服务器。这里Designer不会调用另一个进程,而是连接到已经在Designer外部运行的服务器。