spring-boot
を使用したpostgres
接続プーリングを使用したTomcat
データベースでの最大接続に使用されるデフォルト値は何ですか?
プロパティspring.datasource.maxActive
がありますが、それをsysoutしようとすると、例外が発生します。
@Value("${spring.datasource.maxActive}")
private String act;
Java.lang.IllegalArgumentException: Could not resolve placeholder 'spring.datasource.maxActive' in string value "${spring.datasource.maxActive}
による org.Apache.Tomcat.jdbc.pool.PoolProperties
デフォルト値は100
Beanクラスの値を取得するには、application.propertiesまたはapplication.yamlでspring.datasource.max-activeを設定する必要があります
一般的なapplication.propertiesについては、 https://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html を参照してください