在docker、spring web应用程序中找不到适合数据源的驱动程序类

wooyq4lh  于 2024-01-06  发布在  Spring
关注(0)|答案(1)|浏览(160)

我有一个使用postgre SQL数据库的Spring Web应用程序。当从IntelliJ运行时,一切都很顺利,但是当试图在Docker中运行图像时,我收到了一个数据源错误。

  1. 00:59:44.724 [main] INFO com.example.fcs.FeedbackCollectionSystemApplication -- Starting FeedbackCollectionSystemApplication v2.15.3 using Java 19 with PID 1 (/FeedbackCollectionSystem.jar started by root in /)
  2. 00:59:44.728 [main] INFO com.example.fcs.FeedbackCollectionSystemApplication -- No active profile set, falling back to 1 default profile: "default"
  3. 00:59:45.799 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate -- Bootstrapping Spring Data JPA repositories in DEFAULT mode.
  4. 00:59:45.908 [main] INFO org.springframework.data.repository.config.RepositoryConfigurationDelegate -- Finished Spring Data repository scanning in 96 ms. Found 2 JPA repository interfaces.
  5. 00:59:46.377 [main] WARN org.springframework.context.annotation.AnnotationConfigApplicationContext -- Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration': Unsatisfied dependency expressed through constructor parameter 0: Error creating bean with name 'dataSource' defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Hikari.class]: Failed to instantiate [com.zaxxer.hikari.HikariDataSource]: Factory method 'dataSource' threw exception with message: Failed to determine a suitable driver class
  6. 00:59:46.382 [main] ERROR org.springframework.boot.SpringApplication -- Application run failed
  7. org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration': Unsatisfied dependency expressed through constructor parameter 0: Error creating bean with name 'dataSource' defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Hikari.class]: Failed to instantiate [com.zaxxer.hikari.HikariDataSource]: Factory method 'dataSource' threw exception with message: Failed to determine a suitable driver class
  8. at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:802)
  9. at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:241)
  10. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1356)
  11. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1193)
  12. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:563)
  13. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:523)
  14. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
  15. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
  16. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
  17. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
  18. at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:413)
  19. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1336)
  20. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1166)
  21. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:563)
  22. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:523)
  23. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
  24. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
  25. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
  26. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
  27. at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1173)
  28. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:936)
  29. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:616)
  30. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:753)
  31. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:455)
  32. at org.springframework.boot.SpringApplication.run(SpringApplication.java:323)
  33. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1342)
  34. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1331)
  35. at com.example.fcs.FeedbackCollectionSystemApplication.main(FeedbackCollectionSystemApplication.java:10)
  36. Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Hikari.class]: Failed to instantiate [com.zaxxer.hikari.HikariDataSource]: Factory method 'dataSource' threw exception with message: Failed to determine a suitable driver class
  37. at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:655)
  38. at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:643)
  39. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1336)
  40. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1166)
  41. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:563)
  42. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:523)
  43. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
  44. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
  45. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
  46. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
  47. at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1441)
  48. at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1348)
  49. at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:911)
  50. at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:789)
  51. ... 27 common frames omitted
  52. Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.zaxxer.hikari.HikariDataSource]: Factory method 'dataSource' threw exception with message: Failed to determine a suitable driver class
  53. at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:178)
  54. at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:651)
  55. ... 41 common frames omitted
  56. Caused by: org.springframework.boot.autoconfigure.jdbc.DataSourceProperties$DataSourceBeanCreationException: Failed to determine a suitable driver class
  57. at org.springframework.boot.autoconfigure.jdbc.DataSourceProperties.determineDriverClassName(DataSourceProperties.java:186)
  58. at org.springframework.boot.autoconfigure.jdbc.PropertiesJdbcConnectionDetails.getDriverClassName(PropertiesJdbcConnectionDetails.java:49)
  59. at org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration.createDataSource(DataSourceConfiguration.java:55)
  60. at org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari.dataSource(DataSourceConfiguration.java:117)
  61. at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)
  62. at java.base/java.lang.reflect.Method.invoke(Method.java:578)
  63. at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
  64. ... 42 common frames omitted

字符串
我的application.properties有所需的一切(我想):

  1. spring.datasource.url=jdbc:"totaly correct url"
  2. spring.datasource.username="totaly correct username"
  3. spring.datasource.password="totaly correct password"
  4. spring.datasource.driver-class-name=org.postgresql.Driver


build.gradle(仅相关):

  1. dependencies {
  2. implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
  3. implementation 'org.springframework.boot:spring-boot-starter-jdbc'
  4. implementation 'org.springframework.boot:spring-boot-starter-web'
  5. implementation 'org.postgresql:postgresql:42.2.27'
  6. runtimeOnly 'org.postgresql:postgresql'
  7. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  8. }
  9. bootJar {
  10. duplicatesStrategy = 'exclude'
  11. mainClass = 'com.example.fcs.FeedbackCollectionSystemApplication'
  12. }
  13. apply plugin: 'java'
  14. jar {
  15. manifest {
  16. attributes 'Main-Class': 'com.example.fcs.FeedbackCollectionSystemApplication'
  17. }
  18. }


我的数据库肯定是运行和工作。此外,'Main-Class'属性不是在jar文件中的MANIFEST.INF中创建的,所以我每次都手动添加它,尽管我在build.gradle中写了2次。如果你有解决方案,或者我的主要问题,我会感谢你的回应。

t98cgbkg

t98cgbkg1#

创建docker-compose.yml文件可以修复此问题

相关问题