Spring Boot 如何将Sping Boot 应用程序连接到AWS文档数据库

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

我无法将spring Boot 应用程序连接到aws document db。请告诉我哪里出错了。
pom.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-
  5. 4.0.0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>org.springframework.boot</groupId>
  9. <artifactId>spring-boot-starter-parent</artifactId>
  10. <version>2.7.0</version>
  11. <relativePath /> <!-- lookup parent from repository -->
  12. </parent>
  13. <groupId>com.mercedes-benz.xdrs</groupId>
  14. <artifactId>xdrs_data_service_api</artifactId>
  15. <version>1.0.0.0</version>
  16. <name>xdrs_data_service_api</name>
  17. <description>xdrs data service api</description>
  18. <packaging>jar</packaging>
  19. <properties>
  20. <java.version>11</java.version>
  21. <spring-cloud.version>2021.0.2</spring-cloud.version>
  22. <log4j2.version>2.19.0</log4j2.version>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.retry</groupId>
  27. <artifactId>spring-retry</artifactId>
  28. <version>1.3.1</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. <version>3.0.2</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-log4j2</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-actuator</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-devtools</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.httpcomponents</groupId>
  49. <artifactId>httpclient</artifactId>
  50. <version>4.5.13</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-aop</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springdoc</groupId>
  58. <artifactId>springdoc-openapi-ui</artifactId>
  59. <version>1.2.9</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.mongodb</groupId>
  67. <artifactId>mongo-java-driver</artifactId>
  68. <version>3.12.10</version> <!-- Use the latest version -->
  69. </dependency>
  70. <dependency>
  71. <groupId>org.mongodb</groupId>
  72. <artifactId>mongodb-driver-sync</artifactId>
  73. <version>4.4.1</version> <!-- Use the latest version -->
  74. </dependency>
  75. <dependency>
  76. <groupId>com.amazonaws</groupId>
  77. <artifactId>aws-java-sdk</artifactId>
  78. <version>1.11.986</version> <!-- Use the latest version -->
  79. </dependency>
  80. <dependency>
  81. <groupId>org.mapstruct</groupId>
  82. <artifactId>mapstruct-jdk8</artifactId>
  83. <version>1.3.0.Beta2</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-validation</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.mongodb</groupId>
  91. <artifactId>mongodb-driver-core</artifactId>
  92. <version>3.11.2</version>
  93. </dependency>
  94. </dependencies>
  95. <dependencyManagement>
  96. <dependencies>
  97. <dependency>
  98. <groupId>org.springframework.cloud</groupId>
  99. <artifactId>spring-cloud-dependencies</artifactId>
  100. <version>${spring-cloud.version}</version>
  101. <type>pom</type>
  102. <scope>import</scope>
  103. </dependency>
  104. </dependencies>
  105. </dependencyManagement>
  106. <build>
  107. <plugins>
  108. <plugin>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-maven-plugin</artifactId>
  111. </plugin>
  112. </plugins>
  113. <finalName>xdrs-data-service-api</finalName>
  114. </build>

字符串
DocumentDBConf.java

  1. package com.mercedesBenz.xdrs.dataService.config;
  2. import java.io.File;
  3. import java.security.Security;
  4. import javax.net.ssl.SSLContext;
  5. import org.springframework.beans.factory.annotation.Value;
  6. import org.springframework.context.annotation.Bean;
  7. import org.springframework.context.annotation.Configuration;
  8. import org.springframework.data.mongodb.core.MongoTemplate;
  9. import com.mongodb.ConnectionString;
  10. import com.mongodb.MongoClientSettings;
  11. import com.mongodb.client.MongoClient;
  12. import com.mongodb.client.MongoClients;
  13. @Configuration
  14. public class DocumentDBConf {
  15. @Value("${documentdb.connectionString}")
  16. private String connectionString;
  17. @Value("${documentdb.pemFile}")
  18. private String pemFile;
  19. @Bean
  20. public MongoClient mongoClient() throws Exception {
  21. // Load the .pem certificate file
  22. File pemCertificate = new File(pemFile);
  23. // Enable AWS DocumentDB TLS
  24. System.setProperty("javax.net.ssl.trustStore", pemCertificate.getAbsolutePath());
  25. System.setProperty("javax.net.ssl.trustStorePassword", "changeit"); // The default trust store password
  26. System.setProperty("javax.net.debug", "ssl");
  27. // Enable strong cryptography
  28. // Security.setProperty("crypto.policy", "unlimited");
  29. ConnectionString connString = new ConnectionString(connectionString);
  30. MongoClientSettings settings = MongoClientSettings.builder()
  31. .applyToSslSettings(sslSettingsBuilder -> {
  32. try {
  33. sslSettingsBuilder.enabled(true)
  34. .context(SSLContext.getDefault()); // Use the default SSLContext
  35. } catch (Exception e) {
  36. throw new RuntimeException("Error creating SSL context", e);
  37. }
  38. })
  39. .applyConnectionString(connString)
  40. .build();
  41. return MongoClients.create(settings);
  42. }
  43. @Bean
  44. public MongoTemplate mongoTemplate(MongoClient mongoClient) {
  45. return new MongoTemplate(mongoClient, "test"); // Replace 'your_database_name' with your actual database name
  46. }


}
application.properties

  1. documentdb.connectionString=mongodb://user:pwd@xdrs-int-docdb-
  2. cluster-identifier.cluster-c6wywertyiq6.eu-central-1.docdb.amazonaws.com:27017/test?tls=true
  3. documentdb.pemFile=/xdrs_data_service_api/src/main/resources/global-bundle.pem
  4. #documentdb.pemFile=classpath:docdb.cert
  5. #documentdb.pemFile=classpath:rds-truststore.jks
  6. management.metrics.mongo.command.enabled=false
  7. management.metrics.mongo.connectionpool.enabled=false


XdrsDataServiceApplication.java

  1. package com.mercedesBenz.xdrs.dataService;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
  4. import org.springframework.boot.autoconfigure.SpringBootApplication;
  5. import org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration;
  6. import org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration;
  7. import org.springframework.boot.autoconfigure.mongo.embedded.EmbeddedMongoAutoConfiguration;
  8. import org.springframework.context.annotation.ComponentScan;
  9. import org.springframework.context.annotation.Configuration;
  10. import org.springframework.retry.annotation.EnableRetry;
  11. @SpringBootApplication(exclude = {MongoAutoConfiguration.class,
  12. MongoDataAutoConfiguration.class})
  13. public class XdrsDataServiceApplication {
  14. public static void main(String[] args) {
  15. SpringApplication.run(XdrsDataServiceApplication.class, args);
  16. }
  17. }


我的pem文件存储位置的图像

在本地我得到以下错误



当我在AWS ECS Fargate中部署相同的代码时,我看到以下日志


rmbxnbpk

rmbxnbpk1#

这里有两个问题:

  • 首先,在本地连接时,您不能直接连接-您需要通过SSH隧道连接。有关如何执行此操作的详细信息,请参阅Connecting to an Amazon DocumentDB Cluster from Outside an Amazon VPC
  • 其次,.pem证书文件不能直接用作Java信任库,而是包含应该导入到Java信任库中的证书(使用keytool Java实用程序),这样您的程序就可以在验证DocumentDB服务器的身份时引用该信任库(通过javax.net.ssl.trustStore系统属性)。
  • 内容:sun.security.*封装(在您发布的Fargate日志中引用)验证DocumentDB服务器的身份,方法是尝试构建一个有效的PKIX证书路径,该路径从Java信任存储中找到的根CA证书到您所针对的特定DocumentDB服务器提供的证书。如果在javax.net.ssl.trustStore处找到的Java信任存储无效(例如,因为它是.pem文件,而不是有效的.jks文件),或者如果它不包含必要的证书(例如,因为在global-bundle.pem中找到的根CA证书从未使用Java keytool实用程序导入),PKIX路径构建失败,这意味着无法建立DocumentDB服务器的标识。有关详细信息,请参阅启用TLS连接(并确保选择“Java”选项卡以查看特定于Java的说明)。

相关问题