Lets say i have properties class ExampleProps:
@ConfigurationProperties(prefix = "prefix.stuff")
@ConstructorBinding
@AllArgsConstructor
public class ExampleProps {
...
}
Which is located in src/main/java/com/example/props/. When spring scans for ConfigurationProperties it gives it following name
"prefix.stuff-com.example.props.ExampleProps"
Can i somehow change naming strategy to the regular one (Class name with lowercase first letter)?