DefaultParameterNameDiscoverer should automatically adapt to Graal constraints [SPR-17005] #21543
Labels
in: core
Issues in core modules (aop, beans, core, context, expression)
in: web
Issues in web modules (web, webmvc, webflux, websocket)
type: enhancement
A general enhancement
Milestone
Dave Syer opened SPR-17005 and commented
ParameterNameDiscoverer
is used in a number of places in Spring, not least of which is in the core DI features.AbstractAutowireCapableBeanFactory
exposes a setter and a getter, but it's not available in any public interfaces that are easy to access, so it seems like you have to resort to downcasting:MVC and Webflux also use parameter name discovery for controller methods. This can be avoided if users explicitly add annotations, or simply don't use the flexible method signature features.
The default parameter name discoverer uses reflection and also ASM, and both of these strategies is problematic or unavailable in native images (c.f. GraalVM). It seems like the
AbstractAutowireCapableBeanFactory
actually works fine with aNoopParameterNameDiscoverer
(that just returns null), unless it has to do autowire by name (which is pretty uncommon I should think).Issue Links:
Referenced from: commits e8034f2
The text was updated successfully, but these errors were encountered: