|
@@ -0,0 +1,16 @@
|
|
|
+package com.huimv.admin.config;
|
|
|
+
|
|
|
+import org.springframework.context.annotation.Configuration;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+import org.springframework.web.servlet.config.annotation.PathMatchConfigurer;
|
|
|
+import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
|
|
+
|
|
|
+@Configuration
|
|
|
+public class ApiPrefixAutoConfiguration implements WebMvcConfigurer {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void configurePathMatch(PathMatchConfigurer configurer) {
|
|
|
+ configurer.addPathPrefix("/newEnv", c -> c.isAnnotationPresent(RestController.class));
|
|
|
+ }
|
|
|
+
|
|
|
+}
|