-
Notifications
You must be signed in to change notification settings - Fork 38.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
spring-tx causes cglib error in java native runtime for repository beans defined by interface #34329
Comments
@jzhn thanks for the report and the reproducer. Here is the stacktrace:
FTR, I don't believe that #32609 is linked to this. |
I didn't look carefully enough at the sample and missed the comment you added in the configuration file: // replace above with below to workaround the issue
// since defining bean with concreate type would
// make process-aot generate the required cglib proxy
// @Bean
// public MongoDao myDao() {
// return new MongoDao();
// } This is what you should be doing. If you expose a type that does not provide the capabilities that are needed at runtime, Spring AOT will not get a chance to prepare the object to honor them. |
@snicoll thanks for the quick triage and apologies for missing the doc about returning precise bean types. For my learning - is it possible to implement some sort of generic logic to generate and register the CGLIB bean types manually? The reason I'm asking that is my org is doing a massive conversion to java native + springboot. So if there's a chance that such logic can be handled centrally, it could save teams some efforts of updating all of their configurations. For example, if teams know a certain package, like |
I suppose that would be possible. However, creating the proxy is the least of your problem. Anything that requires the framework to act on the instance needs to be known at build time. If you have a FTR, exposing the interface in the sample as you're doing does not hide the implementation in any way. If you ask the container for the implementation, it'll be able to inject it just fine. The best practices to return the most precise type is not related to AOT/Native, it's just that it becomes a problem there while the container is coping with the regular runtime. Back to your question, I'd debug what |
What
Spring boot uses AOT processing to generate required reflect/proxy/resource configs as well as CGLIB proxy classes in compile time. For beans defined with interface types, CGLIB proxy is usually unnecessary so process-aot job does not generate CGLIB proxy.
When
org.springframework.data:spring-data-mongodb
is imported, java native projects with repository beans defined with interface types will encounter exception in runtime about unexpected CGLIB usage for the repository class.Update: upon further investigation, just having
org.springframework:spring-tx
is enough to trigger the issue. It's not directly caused byspring-data-mongodb
.Minimum reproduciable project
https://github.com/jzhn/springNativeBugSpringDataMongoDB. Please refer to its README for steps to reproduce, expected behaviour and actual behaviour.
Versions
21.0.2-graalce
3.4.2
(latest to date)15.2
on ARM64 macThe text was updated successfully, but these errors were encountered: