我正在使用 Apache-CXF REST 服务并使用 swagger 作为文档。基于环境 (dev/qa/prod) 的 API 更改的默认值。我想将默认值(在本例中为 -5247710000779009)外部化到一个属性文件,我已经基于 env 为不同目的维护了该文件。
@ApiParam(value = "Customer information will be fetched by this account number", required = true, defaultValue = "5247710000779009")
我怎样才能做到这一点?