From 5b8ee86091709013879f9d2931daa0f72cca9c78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Nicoll?= Date: Wed, 8 Jan 2025 11:03:24 +0100 Subject: [PATCH] Add missing reference to C3P0 Closes gh-43724 --- .../java/org/springframework/boot/jdbc/DataSourceBuilder.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/jdbc/DataSourceBuilder.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/jdbc/DataSourceBuilder.java index 816a6a8a372f..5bbc5b861ba8 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/jdbc/DataSourceBuilder.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/jdbc/DataSourceBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2024 the original author or authors. + * Copyright 2012-2025 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -59,6 +59,7 @@ *
  • Tomcat JDBC Pool ({@code org.apache.tomcat.jdbc.pool.DataSource})
  • *
  • Apache DBCP2 ({@code org.apache.commons.dbcp2.BasicDataSource})
  • *
  • Oracle UCP ({@code oracle.ucp.jdbc.PoolDataSourceImpl})
  • + *
  • C3P0 ({@code com.mchange.v2.c3p0.ComboPooledDataSource})
  • * *

    * The following non-pooling {@link DataSource} implementations can be used when