Commit a3a092a5c8125c717e3c9bef2998e4db8f66642b
1 parent
bdfb8426
1.
Showing
1 changed file
with
0 additions
and
6 deletions
src/main/java/com/bsth/server_rs/AuthorizeInterceptor_IN.java
| ... | ... | @@ -62,12 +62,6 @@ public class AuthorizeInterceptor_IN extends AbstractPhaseInterceptor<Message> i |
| 62 | 62 | throw new AesException(AesException.MISS_SIGN); |
| 63 | 63 | } |
| 64 | 64 | |
| 65 | - //放行wadl | |
| 66 | - if(message.get(Message.QUERY_STRING).equals("_wadl") | |
| 67 | - && message.get(Message.PATH_INFO).equals("/webservice/rest")){ | |
| 68 | - return ; | |
| 69 | - } | |
| 70 | - | |
| 71 | 65 | //获取参数,不包括 url 路径参数 只包括?号之后的 |
| 72 | 66 | String queryString = StringEscapeUtils.unescapeHtml4(message.get(Message.QUERY_STRING).toString()); |
| 73 | 67 | MultiMap<String> params = new MultiMap<>(); | ... | ... |