RWS / dxa-web-application-java

SDL Digital Experience Accelerator Java Spring MVC web application
25 stars 37 forks source link

DxaSpringInitialization force to use UpperCamelCase jackson namig strategy #128

Open neeteshnarvaria opened 4 years ago

neeteshnarvaria commented 4 years ago

Hi,

I think framework should be flexible to allow developer to choose which naming strategy they would prefer to use, on spring boot application when we import DxaSpringInitialization class it force us to use UpperCamelCase strategy.

I saw there is reason to do UpperCamelCase strategy on object mapper objectMapper.setPropertyNamingStrategy(new UpperCamelCaseStrategy());

but that strategy then applies globally.

instead of add strategy on bean initialization, i feel it would be better if we make @JsonNaming(PropertyNamingStrategy.UpperCamelCaseStrategy.class) annotation on specific class i.e. MvcModelData.

that would make framework more flexible and other application which is using dxa can choose jackson naming strategy.