标签: spring-boot annotations spring-profiles spring-properties
我想知道是否有办法仅为特定的春季启动配置文件定义和使用注释。我们假设我有一个方法类foo,其中定义了注释'@Bar':
foo
'@Bar'
@RequestMapping(method = RequestMethod.POST) @Bar() Response foo() {}
我想仅为特定的配置文件(生产)定义'@Bar()'注释(可从第3个库获得)。我想在个人资料' dev'很活跃。
'@Bar()'