|
@@ -39,11 +39,13 @@ public class SimpleCORSFilter implements Filter {
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
+ private static final String PASS_API = "api=credit.sec.data";
|
|
|
+ private static final String PASS_GATEWAY = "/gateway";
|
|
|
+ private static final String PASS_REST = "/api/rest";
|
|
|
|
|
|
|
|
|
//全局定义ApiConstant
|
|
|
- private final static Map<String, String> apiMaps=new HashMap<String, String>(){
|
|
|
+ private final static Map<String, String> API_MAPS=new HashMap<String, String>(){
|
|
|
{
|
|
|
|
|
|
|
|
@@ -297,16 +299,16 @@ public class SimpleCORSFilter implements Filter {
|
|
|
try {
|
|
|
|
|
|
|
|
|
- if(null != request && null != request.getQueryString() && !request.getQueryString().equals("api=credit.sec.data")){
|
|
|
+ if(null != request && null != request.getQueryString() && !PASS_API.equals(request.getQueryString())){
|
|
|
return ResponseCode.UNKNOWN_ERROR;
|
|
|
};
|
|
|
|
|
|
- if(null != request && null != request.getQueryString() && !request.getRequestURI().equals("/gateway")){
|
|
|
+ if(null != request && null != request.getQueryString() && !PASS_GATEWAY.equals(request.getRequestURI())){
|
|
|
return ResponseCode.UNKNOWN_ERROR;
|
|
|
}
|
|
|
|
|
|
|
|
|
- if(null != request && null == request.getQueryString() && !request.getRequestURI().equals("/api/rest")){
|
|
|
+ if(null != request && null == request.getQueryString() && !PASS_REST.equals(request.getRequestURI())){
|
|
|
return ResponseCode.UNKNOWN_ERROR;
|
|
|
}
|
|
|
|
|
@@ -347,7 +349,7 @@ public class SimpleCORSFilter implements Filter {
|
|
|
if (0 >= new BigDecimal(customer1.getAccountBalance()).compareTo(new BigDecimal(0.0))) {
|
|
|
return ResponseCode.BALANCE_QUERY_ERROR;
|
|
|
}
|
|
|
- if(!apiMaps.containsKey(api)){
|
|
|
+ if(!API_MAPS.containsKey(api)){
|
|
|
return ResponseCode.CUSTOMER_QUERY_ERROR;
|
|
|
}
|
|
|
|