If connection pooling is not defined in the persistence.xml for eclipse link, what is the default behavior?
Will it open and close a JDBC connection for every transaction? Will it create a connection pool with some defaults?
The default connection pooling for EclipseLink when not using a data source is a pool of min/max 32 connections, with an initial of 1 connections. So each transaction will use a pooled connection, and not connect/disconnect.