Commit 8bae4204 by zhangdaiscott

jeecg.path.webapp配置无效 issues/3126

parent 09a63610
...@@ -41,7 +41,10 @@ public class WebMvcConfiguration implements WebMvcConfigurer { ...@@ -41,7 +41,10 @@ public class WebMvcConfiguration implements WebMvcConfigurer {
@Override @Override
public void addResourceHandlers(ResourceHandlerRegistry registry) { public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/**") registry.addResourceHandler("/**")
.addResourceLocations("file:" + upLoadPath + "//", "file:" + webAppPath + "//") //update-begin-author:taoyan date:20211116 for: jeecg.path.webapp配置无效 #3126
.addResourceLocations("file:" + upLoadPath + "//")
.addResourceLocations("file:" + webAppPath + "//")
//update-end-author:taoyan date:20211116 for: jeecg.path.webapp配置无效 #3126
.addResourceLocations(staticLocations.split(",")); .addResourceLocations(staticLocations.split(","));
} }
...@@ -72,9 +75,9 @@ public class WebMvcConfiguration implements WebMvcConfigurer { ...@@ -72,9 +75,9 @@ public class WebMvcConfiguration implements WebMvcConfigurer {
} }
/** /**
* 添加Long转json精度丢失的配置 * 添加Long转json精度丢失的配置
* @Return: void * @Return: void
*/ */
@Override @Override
public void configureMessageConverters(List<HttpMessageConverter<?>> converters) { public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
MappingJackson2HttpMessageConverter jackson2HttpMessageConverter = new MappingJackson2HttpMessageConverter(); MappingJackson2HttpMessageConverter jackson2HttpMessageConverter = new MappingJackson2HttpMessageConverter();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment