package com.pollex.pam.config;
|
|
import org.springframework.context.annotation.Configuration;
|
import org.springframework.format.FormatterRegistry;
|
import org.springframework.format.datetime.standard.DateTimeFormatterRegistrar;
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
|
/**
|
* Configure the converters to use the ISO format for dates by default.
|
*/
|
@Configuration
|
public class DateTimeFormatConfiguration implements WebMvcConfigurer {
|
|
@Override
|
public void addFormatters(FormatterRegistry registry) {
|
DateTimeFormatterRegistrar registrar = new DateTimeFormatterRegistrar();
|
registrar.setUseIsoFormat(true);
|
registrar.registerFormatters(registry);
|
}
|
}
|