0

我正在尝试按照下面的链接逐步运行示例:

https://dzone.com/articles/easy-java-ee-microservices-with-payara-micro

该示例使用了我包含在 Maven POM 中的 Apache Derby DB,并且还捆绑在 War 文件的 WEB-INF/lib 文件夹中。

但是,当我尝试使用命令运行应用程序时

sudo java -jar payara-micro-5.2020.4.jar --deploy <path to>/SampleService-1.0.war

我收到以下错误:

javax.resource.ResourceException: The driver could not be loaded: org.apache.derby.jdbc.ClientDriver```
4

1 回答 1

1
  1. 这可能是类加载顺序问题。查看https://docs.payara.fish/community/docs/5.201/documentation/payara-server/classloading.html
  2. 从 5.201 版开始,Derby 已被删除。查看https://docs.payara.fish/community/docs/5.2020.4/documentation/payara-micro/h2/h2.html 在示例教程中使用完全相同的版本或使用 H2 代替 Derby。
  3. 最后查看“将第三方 JAR 添加到微型实例” https://docs.payara.fish/community/docs/5.201/documentation/payara-micro/adding-jars.html
于 2020-09-13T10:01:57.897 回答