|
|
|
|
@ -1,12 +1,17 @@
|
|
|
|
|
package org.dromara.common.web.config;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.date.DateUtil;
|
|
|
|
|
import org.dromara.common.core.utils.StringUtils;
|
|
|
|
|
import org.dromara.common.web.handler.GlobalExceptionHandler;
|
|
|
|
|
import org.springframework.boot.autoconfigure.AutoConfiguration;
|
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
|
import org.springframework.format.FormatterRegistry;
|
|
|
|
|
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
|
|
|
|
|
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
|
|
|
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 通用配置
|
|
|
|
|
*
|
|
|
|
|
@ -20,6 +25,17 @@ public class ResourcesConfig implements WebMvcConfigurer {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void addFormatters(FormatterRegistry registry) {
|
|
|
|
|
// 全局日期格式转换配置
|
|
|
|
|
registry.addConverter(String.class, Date.class, source -> {
|
|
|
|
|
if (StringUtils.isBlank(source)) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
return DateUtil.parse(source);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void addResourceHandlers(ResourceHandlerRegistry registry) {
|
|
|
|
|
}
|
|
|
|
|
|