The following API has to be migrated:
BasicAuthorizationServiceBean
to BasicAuthorizationServiceUtil
MapGenerator
from com.intershop.om.process
to bakery.logic.util
tx_applyChangeRequest()
moved from OrderLogicBeanExistingTX
to OrderLogicTXBean
load*Object() of
OrderDO
to OrderPersistenceService
as loadOrder*Object(OrderDO orderDO)
Due to performance issues in some specific setups, the internal logic in DatabaseDefinitions.getConnection (persistence-common module) has been changed. Instead of creating a new connection for every call from scratch, connections are obtained from the global connection pool to Postgres. The connection pool is backed by an XA Datasource, hence several method calls related to transaction management are blocked.
If you use DatabaseDefinitions.getConnection
to obtain new connections, please make sure that you do not call the following methods on the returned java.sql.Connection
:
Projects have to update their dependencies:
<dependency> <groupId>org.wildfly.bom</groupId> <artifactId>wildfly-jakartaee8-with-tools</artifactId> <scope>import</scope> <type>pom</type> <version>24.0.1.Final</version> </dependency> <dependency> <groupId>org.wildfly</groupId> <artifactId>wildfly-spec-api</artifactId> <scope>provided</scope> <type>pom</type> <version>24.0.1.Final</version> </dependency>