You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
package net.mingsoft.config; |
|
|
|
import java.util.HashMap; |
|
import java.util.Iterator; |
|
import java.util.Map; |
|
|
|
import org.aspectj.lang.annotation.AfterReturning; |
|
import org.aspectj.lang.annotation.Aspect; |
|
import org.springframework.context.annotation.EnableAspectJAutoProxy; |
|
import org.springframework.stereotype.Component; |
|
|
|
import io.swagger.models.Path; |
|
import io.swagger.models.Swagger; |
|
|
|
@Aspect |
|
@EnableAspectJAutoProxy |
|
@Component |
|
public class SwaggerSuffixAspect { |
|
|
|
@AfterReturning(pointcut = "execution(public io.swagger.models.Swagger springfox.documentation.swagger2.mappers.ServiceModelToSwagger2MapperImpl.mapDocumentation(..))", returning = "swagger") |
|
public void doBeforeBussinessCheck(Swagger swagger) { |
|
Map<String, Path> paths = swagger.getPaths(); |
|
if (null != paths) { |
|
Map<String, Path> newPaths = new HashMap<String, Path>(paths); |
|
paths.clear(); |
|
Iterator<String> it = newPaths.keySet().iterator(); |
|
while (it.hasNext()) { |
|
String oldKey = it.next(); |
|
String newKey = oldKey + ".do"; |
|
paths.put(newKey, newPaths.get(oldKey)); |
|
} |
|
newPaths = null; |
|
} |
|
} |
|
}
|
|
|