Skip to content

Commit

Permalink
Merge pull request #30 from yinjihuan/encrypt1.1
Browse files Browse the repository at this point in the history
Encrypt1.1
  • Loading branch information
yinjihuan authored Apr 28, 2019
2 parents a75f893 + 4e28fa5 commit 6e162db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ private String getApiUri(Class<?> clz, Method method) {

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

} else if (method.isAnnotationPresent(PutMapping.class)) {
Expand Down

0 comments on commit 6e162db

Please sign in to comment.