我正在使用Spring的< jdbc:embedded>使用HsqlDB运行集成和验收测试.如果我在应用程序的类路径中包含hsqldb.jar,那么一切正常但将驱动程序作为模块移动到JBoss我得到以下异常:
PropertyAccessException 1: org.springframework.beans.MethodInvocationException:
Property 'databaseType' threw exception;
nested exception is java.lang.IllegalStateException:
Driver for test database type [Hsql] is not available in the classpath
JBoss可以看到驱动程序,因为我可以使用它在JBoss上配置数据源,但无法弄清楚为什么它不在我的应用程序类路径上. jdbc驱动程序只能通过Jboss上配置的数据源使用,还是需要做一些其他工作才能使它可用?
最佳答案
原文链接:https://www.f2er.com/spring/431458.html