启动Zeepelin服务器时出现以下错误。我使用的是带有hbase 1.1.2的phoenix-core:4.4。 Zeppelin使用1.13版球衣。
我处理了依赖冲突。
override var keyCommands: [UIKeyCommand]? {
var commands:[UIKeyCommand] = []
let numbers = ["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"]
for number in numbers {
let txt = number as String
commands.append(UIKeyCommand(input: txt, modifierFlags: [], action: #selector(keyPressed(_:))))
}
commands.append(UIKeyCommand(input: "\r", modifierFlags: [], action: #selector(enterPressed)))
return commands
}