Skip to content

Commit 6e162db

Browse files
authored
Merge pull request #30 from yinjihuan/encrypt1.1
Encrypt1.1
2 parents a75f893 + 4e28fa5 commit 6e162db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

encrypt-core/src/main/java/com/cxytiandi/encrypt/springboot/init/ApiEncryptDataInit.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ private String getApiUri(Class<?> clz, Method method) {
103103

104104
RequestMapping requestMapping = method.getAnnotation(RequestMapping.class);
105105
RequestMethod m = requestMapping.method()[0];
106-
methodType = m.name().toLowerCase();
106+
methodType = m.name().toLowerCase() + ":";
107107
uri.append(formatUri(requestMapping.value()[0]));
108108

109109
} else if (method.isAnnotationPresent(PutMapping.class)) {

0 commit comments

Comments
 (0)