Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
javax.sql.DataSource和javax.sql.ConnectionPoolDataSource有什么区别?在 GlassFish for MySQL 中创建连接池时,我不知道要使用哪种资源类型。
ConnectionPoolDataSource只是一个DataSource(因为它继承了CommonDataSource它也被继承了DataSource)具有连接池的能力 -
ConnectionPoolDataSource
DataSource
CommonDataSource
你问:我不知道使用哪种资源类型
这取决于您的应用程序,许多数据库驱动程序需要很长时间才能与数据库创建新连接,如果您的应用程序要创建太多连接(非常频繁)。使用连接池。