使用 SpEL 参考当前 bean

Reference current bean with SpEL

有没有办法引用包含 SPeL 表达式的对象的当前实例?

我基本上是在寻找类似

的东西
@Value("#{otherBean.getClassName(this.GetClass())}")

其中 getClassName(Class<T> class) returns 的名称为 class,例如。

否;这是不可能的;无法引用当前 bean(或 class),您只能通过名称访问 bean。