AWS ElasticBeanstalkにカスタム.propertiesファイルで春ブートアプリケーションをデプロイするには?

tambovflow:

私は、異なる環境プロパティを使用して春のブートアプリケーションを持っています。選択した環境に基づいて、それはから必要なデータを取り出すapplication-{dev/stag/prod}.propertiesに位置していたファイルを./resourcesすべては(とのGradleを使用して作成した作成した.jarファイルを実行しているとき、それはまたInteliJ経由でローカルに実行し、必要があるときのように動作しますbootJar)。

私は、AWS ElasticBeanstalkアプリケーションを作成しました。そのアプリケーションの中で私が作成したJava環境を展開.jarそこにファイルを。展開するとき私は、ログに次のエラーを参照してください。

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v2.1.5.RELEASE)

2019-07-12 07:47:26.773  INFO 3315 --- [           main] nl.abc.sgapi.SgApiApplication      : Starting SgApiApplication on ip-172-31-29-160 with PID 3315 (/var/app/current/application.jar started by webapp in /var/app/current)
2019-07-12 07:47:26.795  INFO 3315 --- [           main] nl.abc.sgapi.SgApiApplication      : The following profiles are active: dev
2019-07-12 07:47:31.392  INFO 3315 --- [           main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode.
2019-07-12 07:47:31.713  INFO 3315 --- [           main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 301ms. Found 6 repository interfaces.
2019-07-12 07:47:33.384  INFO 3315 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$59ac5acc] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2019-07-12 07:47:33.518  INFO 3315 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'spring.throttling-com.weddini.throttling.autoconfigure.ThrottlingProperties' of type [com.weddini.throttling.autoconfigure.ThrottlingProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2019-07-12 07:47:33.530  INFO 3315 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'com.weddini.throttling.autoconfigure.ThrottlingAutoConfiguration' of type [com.weddini.throttling.autoconfigure.ThrottlingAutoConfiguration$$EnhancerBySpringCGLIB$$16a02498] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2019-07-12 07:47:33.543  INFO 3315 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'throttlingEvaluator' of type [com.weddini.throttling.service.ThrottlingEvaluatorImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2019-07-12 07:47:33.569  INFO 3315 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'throttlingService' of type [com.weddini.throttling.service.ThrottlingServiceImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2019-07-12 07:47:33.593  INFO 3315 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.hateoas.config.HateoasConfiguration' of type [org.springframework.hateoas.config.HateoasConfiguration$$EnhancerBySpringCGLIB$$d92ca7fe] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2019-07-12 07:47:35.100  INFO 3315 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 5000 (http)
2019-07-12 07:47:35.224  INFO 3315 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2019-07-12 07:47:35.225  INFO 3315 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.19]
2019-07-12 07:47:35.515  INFO 3315 --- [           main] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2019-07-12 07:47:35.516  INFO 3315 --- [           main] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 8443 ms
2019-07-12 07:47:39.298  INFO 3315 --- [           main] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2019-07-12 07:47:50.424 ERROR 3315 --- [           main] com.zaxxer.hikari.pool.HikariPool        : HikariPool-1 - Exception during pool initialization.

org.postgresql.util.PSQLException: The connection attempt failed.
    at org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:292) ~[postgresql-42.2.5.jar!/:42.2.5]
    at org.postgresql.core.ConnectionFactory.openConnection(ConnectionFactory.java:49) ~[postgresql-42.2.5.jar!/:42.2.5]
    at org.postgresql.jdbc.PgConnection.<init>(PgConnection.java:195) ~[postgresql-42.2.5.jar!/:42.2.5]
    at org.postgresql.Driver.makeConnection(Driver.java:454) ~[postgresql-42.2.5.jar!/:42.2.5]
    at org.postgresql.Driver.connect(Driver.java:256) ~[postgresql-42.2.5.jar!/:42.2.5]
    at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:136) ~[HikariCP-3.2.0.jar!/:na]

AWS ElasticBeanstalkは内の値を読み取ることができないかのように思えるapplication-dev.propertiesのファイル。

ここに私のものだapplication-dev.propertiesファイルは次のようになります。

spring.datasource.hikari.connectionTimeout=20000
spring.datasource.hikari.maximumPoolSize=5
spring.datasource.url=jdbc:postgresql://{REDACTED}
spring.datasource.username={REDACTED}
spring.datasource.password={REDACTED}
spring.jpa.hibernate.ddl-auto=update
spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults=false
app.message=Hello from dev properties

私はメインに、環境の特定のプロパティを移動しようとしたapplication.propertiesファイルとの.jarを作成します。しかし、これはどちらか動作しませんでした。

私は次は何を試すことができますか?

narzero:

これは、PostgreSQLデータベースに接続することはできませんあなたの春ブートアプリケーションのように見えます。私はあなたがユーザ名とパスワードを確認デュッベルお勧めします。ファイアウォールアクティブ持っている場合は、データベースに接続する必要があり、サーバーがホワイトリストに登録されている場合や、確認してください。

おすすめ

転載: http://43.154.161.224:23101/article/api/json?id=227184&siteId=1