看起来注释需要
Java中的常量.我想这样做:
object ConfigStatics { final val componentsToScan = Array("com.example") } @PropertySource( ConfigStatics.componentsToScan ) // error: constant value required class MyConfig extends WebMvcConfigurerAdapter { }
哪里
@PropertySource( Array("com.example") ) class MyConfig extends WebMvcConfigurerAdapter { }
很好.
遗憾的是,scala不会将静态最终值视为常量值.
这里有什么可做的,或者它是不可能在scala中有命名常量?