Issues
- Must import FQCN when generating metamodel class for inner Jakarta Data repository interfaceHHH-19301Čedomir Igaly
- more ConstraintKindsHHH-19300Resolved issue: HHH-19300Gavin King
- <element-collection/> with LIST classification interpretted as BAGHHH-19299
- add convenience overloads of StatelessSession.get() which default GraphSemantic.LOADHHH-19298Resolved issue: HHH-19298Gavin King
- Register json functions in SingleStore community dialectHHH-19297Oleksandr Yeliseiev
- overload createSelectionQuery() to accept an EntityGraph instead of a result classHHH-19296Resolved issue: HHH-19296Gavin King
- Foreign keys are dropped when using schema = "public" after migrating to Spring Boot 3HHH-19295
- NodeBuilder collection*() doesn't work with enum collectionsHHH-19294
- Criteria isMember() doesn't work with collections mapped as arrayHHH-19293Resolved issue: HHH-19293
- Significant Memory Increase After Upgrading from Spring Boot 3.3.5 to 3.4.4HHH-19292
- Expressions.nullExpresion() in querydsl result in NPE in SqmExpressible with named parametersHHH-19291Resolved issue: HHH-19291Andrea Boriero
- Ability to generate ProxyFactory, AccessOptimizer and InstantiationOptimizer at build timeHHH-19290
- Integrate release_announcement.md into website publishingHHH-19289
- Allow HIbernate Reactive to extend JdbcEnvironmentInitiatorHHH-19288
- CURRENT DATE is not recognized as a keyword using DB2DialectHHH-19287Resolved issue: HHH-19287
- Ignoring auto-applied conversions on special mappingsHHH-19286
- @ManyToAny with @FilterJoinTable KOHHH-19285
- Extract Duplicated Vector Function Registration LogicHHH-19284donghyun Lee
- Hibernate Gradle Plugin configuration cache supportHHH-19283
- Hibernate Envers & Oracle: Automatic column name conversion to uppercaseHHH-19282
- Identify and handle tests which don't need to be run on all databasesHHH-19281
- ResourceRegistryStandardImpl#close(java.sql.Statement) is called on already closed statementsHHH-19280Andrea Boriero
- @Basic not implicit optionalHHH-19279Resolved issue: HHH-19279Gavin King
- fixes to logic in MultiIdEntityLoadersHHH-19278Resolved issue: HHH-19278Gavin King
- Native query EntityManager.createNativeQuery(…, EntityType.class) returns different result when run via EntityManager.createNativeQuery(…)HHH-19277Resolved issue: HHH-19277
- Native query with enum list param leads to OutOfMemoryHHH-19276
- Missing 6.6.11 release for hibernate-orm-toolsHHH-19275Resolved issue: HHH-19275
- Deprecate MetadataBuilder#applyIndexView and friendsHHH-19274Resolved issue: HHH-19274Steve Ebersole
- FetchNotFoundException after Upgrade to 6.6.XHHH-19273
- Secondary table with nested embedded objectHHH-19272
- support HINT_FETCH_PROFILE in SelectionQueryHHH-19271Resolved issue: HHH-19271Gavin King
- Remove LGPL-only contributions to EnversHHH-19270Resolved issue: HHH-19270Yoann Rodière
- Remove support for @Audited(modifiedColumnName = ...)HHH-19269Resolved issue: HHH-19269Yoann Rodière
- StatementInspector not working with "ddl-auto=create" or SchemaManagerHHH-19268
- Allow Hibernate Reactive to override methods in JdbcEnvironemntInitiatorHHH-19267Resolved issue: HHH-19267Davide D'Alto
- inconsistencies in ScrollableResultsHHH-19266Resolved issue: HHH-19266Gavin King
- deprecate hibernate.jdbc.use_scrollable_resultsetHHH-19265Resolved issue: HHH-19265Gavin King
- Add a TimestampWithTimeZoneJdbcType variant that uses ZonedDateTime instead of OffsetDateTime to bind/extract column valuesHHH-19264Resolved issue: HHH-19264
- Do not bind to JNDI if hibernate.session_factory_name_is_jndi is set to falseHHH-19263Resolved issue: HHH-19263Scott Marlow
- OracleDialect getQueryHintString incorrectly joins supplied hintsHHH-19261
- Move feature supports methods from the SqlAstTranslator base impl to DialectHHH-19260Resolved issue: HHH-19260Jan Schatteman
- Static metamodel for id/timestamp not set (and triggers warnings) for DefaultRevisionEntity and similarHHH-19259Resolved issue: HHH-19259Marco Belladelli
- Remove @Entity annotation from default revision entities contributed internally by EnversHHH-19258Resolved issue: HHH-19258Marco Belladelli
- Provide a way to specify the secondary table to which an embedded mapsHHH-19257
- Criteria SUM expression return type errorHHH-19256Resolved issue: HHH-19256
- Cannot setup Column Names, Types, ForeignKeys in generated DDLHHH-19255Resolved issue: HHH-19255
- The return value of st_envelope() is not recognised as a geometry type on MariaDBHHH-19254Resolved issue: HHH-19254Karel Maesen
- deprecate use of lifecycle callbacks on embeddablesHHH-19253Resolved issue: HHH-19253Gavin King
- overriding @Id generation declared by @MappedSuperclassHHH-19252Resolved issue: HHH-19252Gavin King
- Use the "temp classloader" model to always build hibernate-modelsHHH-19251Resolved issue: HHH-19251
50 of
Must import FQCN when generating metamodel class for inner Jakarta Data repository interface
Description
Details
Assignee
Čedomir IgalyČedomir IgalyReporter
Čedomir IgalyČedomir IgalyComponents
Affects versions
Priority
Major
Details
Details
Assignee
Čedomir Igaly
Čedomir IgalyReporter
Čedomir Igaly
Čedomir IgalyComponents
Affects versions
Priority
Created 5 hours ago
Updated 5 hours ago
Activity
Show:
When meta model class is generated for Jakarta Data repository that is defined as (static) inner class fully qualified class name of repository must be imported for use with
implements
. At the moment simple name is used which is generating compiler error.Fix is simple one line change - PR #9938