当我尝试通过JDBC snap在SnapLogic中创建一个derby帐户时,我收到以下错误:
POST for http://prodxl-ccproxy4.fullsail.snaplogic.com:8087/api/1/rest/account/validate failed: Server Error.
答案 0 :(得分:0)
所以,我在这里发布了一些错误。这是因为,我们必须使用derby.jar
代替{python, engine.path="/path/to/your/anaconda3/bin/python"}
。当我们想要特定于服务器运行derby时。
否则,我们只能使用public static void traverseDir(Path path) {
try (DirectoryStream<Path> stream = Files.newDirectoryStream(path)) {
for (Path entry : stream) {
if (Files.isDirectory(entry)) {
System.out.println("Sub-Folder Name : " + entry.toString());
traverseDir(entry);
} else {
System.out.println("\tFile Name : " + entry.toString());
}
}
} catch (IOException e) {
e.printStackTrace();
}
}
。