Я обновил свое приложение play 2.6.7 до версии 2.7.0-R8 и получаю сообщение об ошибке «Неизвестный столбец» * _._ ebean_intercept «в« списке полей »» JPAApi при попытке выполнить следующий код:
jpaApi.withTransaction(entityManager -> { Query query = entityManager.createQuery(hql, modelClass); return query.getResultList(); });
Мои зависимости:
persistence.xml
<persistence xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd" version="2.1"> <persistence-unit name="defaultPersistenceUnit" transaction-type="RESOURCE_LOCAL"> <provider>org.hibernate.jpa.HibernatePersistenceProvider</provider> <non-jta-data-source>DefaultDS</non-jta-data-source> <properties> <property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect"/> </properties> </persistence-unit> </persistence>
Пожалуйста, помогите!
попробуйте обновить Ebean до последней версии
Ebean