The according values in cluster.properties have to be removed. These are:
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>26.1.0.Final</version> </dependency> <dependency> <groupId>org.wildfly</groupId> <artifactId>wildfly-spec-api</artifactId> <scope>provided</scope> <type>pom</type> <version>26.1.0.Final</version> </dependency>
Some expandable enumerations have new attributes or are improved, and the corresponding expanded classes in projects should be modified accordingly:
Remove references to the deprecated attribute activeOMT
Persisted the enum name, as used in APIs:
/** * @return the enum name of the charge type */ @Override @Column(name = "`chargeType`") public String getEnumName() { return name(); }
Persisted the enum name, as used in APIs:
@Override @Column(name = "`paymentName`", length = 100, nullable = false) public String getFieldName() { return this.name(); }
The groupRef
was not being persisted:
/** * @return the id of the payment method group */ @Override @Column( name = "`paymentGroupRef`" ) public Integer getPaymentGroupRef() { return ( paymentGroup == null ? null : paymentGroup.getId() ); }