Radek Felcman
Radek Felcman
https://github.com/eclipse-ee4j/eclipselink/blob/master/foundation/org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/platform/database/PostgreSQLPlatform.java#L709
There is modified test case which compare results fetched via Jakarta Persistence - EclipseLink (5.0.x) and JDBC. Results are same for query `SELECT total FROM Orders WHERE purchasedBy LIKE ?...
Maybe narrow Your test with https://jakarta.ee/specifications/persistence/3.2/jakarta-persistence-spec-3.2#like-expressions
Did You try to pass these properties into `DynamicJAXBContextFactory.createContextFromXSD`? It should work. Something like: ``` Map properties = new HashMap(1); properties.put(JAXBContextProperties.JSON_VALUE_WRAPPER, "#value"); properties.put(JAXBContextProperties.JSON_ATTRIBUTE_PREFIX, "_"); ClassLoader classLoader = SessionEventListenerTestCases.class.getClassLoader(); InputStream schemaStream...
Sorry but I don't see in that provided code fragment any EclipseLink issue just some Spring FW message which is not under our responsibility. JDK 11, EL 2.7.0, JPA 2.2.0...
> Which version of eclipselink officially supports java 11 ? [@rfelcman](https://github.com/rfelcman) 2.7.x works with JDK 11 (minimal is JDK 8.0) we using JDK 11 in our test environment. About error...
> I got the issue with version 2.4.x so I upgraded to 2.7.x version. as 2.7.16 uses jakarta so is there any version of 2.7.x supports java 11 and javax...
> for 2.7.16 what is version of persistance.xml file ? [@rfelcman](https://github.com/rfelcman) 1.0 like see https://github.com/eclipse-ee4j/eclipselink/blob/2.7/jpa/eclipselink.jpa.test.jse/src/META-INF/persistence.xml
> I am using 2.7.16 now. I got below error. > > ``` > org.springframework.transaction.CannotCreateTransactionException: Could not open JPA EntityManager for transaction; nested exception is javax.persistence.PersistenceException: Exception [EclipseLink-28013] (Eclipse Persistence...
Missing there report query definition and related java code e.g. ``` result = em.createQuery( "SELECT o FROM TaxPayer o WHERE ( ?1 MEMBER OF o.bankAccounts) ORDER BY o.income, o.ssn", TaxPayer.class)...