sping使用configation配置小驼峰
时间: 2024-02-11 19:06:51 浏览: 126
在 Spring 中,可以使用 `@ConfigurationProperties` 注解来绑定配置文件中的属性值到一个 JavaBean 中。如果需要将配置文件中的属性名转换为小驼峰形式,则可以在 JavaBean 的属性上使用 `@JsonProperty` 注解来指定对应的属性名。例如:
```java
@ConfigurationProperties(prefix = "my.config")
public class MyConfig {
@JsonProperty("myProperty")
private String myProperty;
// getter and setter
}
```
在上面的例子中,`@ConfigurationProperties` 注解指定了配置文件中的前缀为 `my.config`,而 `@JsonProperty` 注解则指定了属性名为 `myProperty`,即使配置文件中的属性名是 `my-property`,也会正确地绑定到 `myProperty` 属性上。
阅读全文