GarouDan
11/01/2018, 11:31 PM@Bean("MyBean") // works, but
@Bean(MyBean::class.simplaname) // don't work, since the annotation says something like `An annotation argument must be a compile-time constant`
Is there a way to contour this? Since the annotation will be compile-time constant to me.
I would like do something like these to create a lot of dynamic values when using annotation classes.karelpeeters
11/02/2018, 8:17 AMGarouDan
11/02/2018, 12:09 PM