79085861

Date: 2024-10-14 10:56:29
Score: 0.5
Natty:
Report link

It is possible since Spring Boot 3.3 to use @Name to change the binding name (see here)

@ConfigurationProperties(prefix = "user")
public class BarcodeConfig {
    private String customName;
    @Name("details")
    private Details customDetails;
    //...
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: tesmo