Prechádzať zdrojové kódy

修改打包方式为打包为zip形式

qiubo 3 rokov pred
rodič
commit
c285c506f8

+ 34 - 34
src/main/java/com/hywa/banktest/bankframework/utils/httpclient/EasyHttpUtils.java

@@ -31,7 +31,9 @@ import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
 import org.apache.http.message.BasicNameValuePair;
 import org.apache.http.protocol.HttpContext;
 import org.apache.http.util.EntityUtils;
-import org.apache.log4j.Logger;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
 
 import javax.net.ssl.SSLContext;
 import javax.net.ssl.SSLException;
@@ -51,21 +53,21 @@ import java.util.Map;
 
 /**
  * 版权所有:2016-贵阳慧云网安科技有限公司
- * 项目名称:plamsa-common   
+ * 项目名称:plamsa-common
  *
  * 类描述:
- * 类名称:com.elite.common.utils.httpclient.EasyHttpUtils     
- * 创建人: xiezt 
- * 创建时间:2016年5月23日 下午5:30:48   
+ * 类名称:com.elite.common.utils.httpclient.EasyHttpUtils
+ * 创建人: xiezt
+ * 创建时间:2016年5月23日 下午5:30:48
  * 修改人:
- * 修改时间:2016年5月23日 下午5:30:48   
- * 修改备注:   
+ * 修改时间:2016年5月23日 下午5:30:48
+ * 修改备注:
  * @version 1.0
  */
 
 public class EasyHttpUtils {
 
-    private static final Logger LOGG = Logger.getLogger(EasyHttpUtils.class);
+    private static final Logger LOGG = LoggerFactory.getLogger(EasyHttpUtils.class);
     //连接池最大数量
     private static final int HTTPCLIENT_CONNECTION_COUNT = 200;
     //单个路由最大连接数量
@@ -98,9 +100,9 @@ public class EasyHttpUtils {
     private void initHttpClient() {
         //创建httpclient连接池
         httpClientConnectionManager = new PoolingHttpClientConnectionManager();
-        //设置连接池最大数量  
+        //设置连接池最大数量
         httpClientConnectionManager.setMaxTotal(HTTPCLIENT_CONNECTION_COUNT);
-        //设置单个路由最大连接数量  
+        //设置单个路由最大连接数量
         httpClientConnectionManager.setDefaultMaxPerRoute(HTTPCLIENT_MAXPERROUTE_COUNT);
     }
 
@@ -109,30 +111,30 @@ public class EasyHttpUtils {
     HttpRequestRetryHandler myRetryHandler = new HttpRequestRetryHandler() {
         public boolean retryRequest(IOException exception, int executionCount, HttpContext context) {
             if (executionCount >= 3) {
-                // 超过三次则不再重试请求  
+                // 超过三次则不再重试请求
                 return false;
             }
             if (exception instanceof InterruptedIOException) {
-                // Timeout  
+                // Timeout
                 return false;
             }
             if (exception instanceof UnknownHostException) {
-                // Unknown host  
+                // Unknown host
                 return false;
             }
             if (exception instanceof ConnectTimeoutException) {
-                // Connection refused  
+                // Connection refused
                 return false;
             }
             if (exception instanceof SSLException) {
-                // SSL handshake exception  
+                // SSL handshake exception
                 return false;
             }
             HttpClientContext clientContext = HttpClientContext.adapt(context);
             HttpRequest request = clientContext.getRequest();
             boolean idempotent = !(request instanceof HttpEntityEnclosingRequest);
             if (idempotent) {
-                // Retry if the request is considered idempotent  
+                // Retry if the request is considered idempotent
                 return true;
             }
             return false;
@@ -140,12 +142,12 @@ public class EasyHttpUtils {
     };
 
     public CloseableHttpClient getHttpClient() {
-        // 创建全局的requestConfig  
+        // 创建全局的requestConfig
         RequestConfig requestConfig = RequestConfig.custom()
                 .setConnectTimeout(HTTPCLIENT_CONNECT_TIMEOUT)
                 .setSocketTimeout(HTTPCLIENT_SOCKET_TIMEOUT)
                 .setCookieSpec(CookieSpecs.BEST_MATCH).build();
-        // 声明重定向策略对象  
+        // 声明重定向策略对象
         LaxRedirectStrategy redirectStrategy = new LaxRedirectStrategy();
 
         CloseableHttpClient httpClient = HttpClients.custom().setConnectionManager(httpClientConnectionManager)
@@ -158,7 +160,7 @@ public class EasyHttpUtils {
 
 
     /**
-     * HttpClient连接SSL 
+     * HttpClient连接SSL
      */
     public void ssl(String urlStr, String keyPath, String keypass) {
         CloseableHttpClient httpclient = null;
@@ -171,7 +173,7 @@ public class EasyHttpUtils {
             KeyStore trustStore = KeyStore.getInstance(KeyStore.getDefaultType());
             FileInputStream instream = new FileInputStream(new File(keyPath));
             try {
-                // 加载keyStore   
+                // 加载keyStore
                 trustStore.load(instream, keypass.toCharArray());
             } catch (CertificateException e) {
                 e.printStackTrace();
@@ -181,23 +183,21 @@ public class EasyHttpUtils {
                 } catch (Exception ignore) {
                 }
             }
-            // 相信自己的CA和所有自签名的证书  
+            // 相信自己的CA和所有自签名的证书
             SSLContext sslcontext = SSLContexts.custom().loadTrustMaterial(trustStore, new TrustSelfSignedStrategy()).build();
-            // 只允许使用TLSv1协议  
+            // 只允许使用TLSv1协议
             SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(sslcontext, new String[]{"TLSv1"}, null,
                     SSLConnectionSocketFactory.BROWSER_COMPATIBLE_HOSTNAME_VERIFIER);
             httpclient = HttpClients.custom().setConnectionManager(httpClientConnectionManager)
                     .setDefaultRequestConfig(requestConfig)
                     .setRedirectStrategy(redirectStrategy)
                     .setRetryHandler(myRetryHandler).setSSLSocketFactory(sslsf).build();
-            // 创建http请求(get方式)  
+            // 创建http请求(get方式)
             HttpGet httpget = new HttpGet(urlStr);
 
             CloseableHttpResponse response = httpclient.execute(httpget);
             try {
                 HttpEntity entity = response.getEntity();
-                LOGG.info("----------------------------------------");
-                LOGG.info(response.getStatusLine());
                 if (entity != null) {
                     LOGG.info("Response content length: " + entity.getContentLength());
                     LOGG.info(EntityUtils.toString(entity));
@@ -221,18 +221,18 @@ public class EasyHttpUtils {
 
 
     /**
-     * 发送 post请求访问本地应用并根据传递参数不同返回不同结果 
+     * 发送 post请求访问本地应用并根据传递参数不同返回不同结果
      */
     public void post(String urlString, Map<String, Object> params) {
-        // 创建默认的httpClient实例. 
+        // 创建默认的httpClient实例.
         LOGG.info("urlString:=========>" + urlString);
         CloseableHttpClient httpclient = this.getHttpClient();
         if ("".equals(urlString) || urlString == null) {
             return;
         }
-        // 创建httppost    
+        // 创建httppost
         HttpPost httppost = new HttpPost(urlString);
-        // 创建参数队列    
+        // 创建参数队列
         List<NameValuePair> formparams = new ArrayList<NameValuePair>();
         if (params != null && params.size() > 0) {
             for (String key : params.keySet()) {
@@ -264,14 +264,14 @@ public class EasyHttpUtils {
 
     public String post(String urlString, JSONObject params) {
         StringBuilder result = new StringBuilder();
-        // 创建默认的httpClient实例.    
+        // 创建默认的httpClient实例.
         CloseableHttpClient httpclient = this.getHttpClient();
         if ("".equals(urlString) || urlString == null) {
             return null;
         }
-        // 创建httppost    
+        // 创建httppost
         HttpPost httppost = new HttpPost(urlString);
-        // 创建参数队列   
+        // 创建参数队列
         httppost.addHeader("Content-type", "application/json; charset=utf-8");
         httppost.setHeader("Accept", "application/json");
         httppost.setEntity(new StringEntity(params.toJSONString(), Charset.forName("UTF-8")));
@@ -355,6 +355,6 @@ public class EasyHttpUtils {
 
 
 }
-	
-	
+
+
 

+ 50 - 49
src/main/java/com/hywa/banktest/bankframework/utils/httpclient/SimpleHttpUtils.java

@@ -1,6 +1,7 @@
 package com.hywa.banktest.bankframework.utils.httpclient;
 
-import org.apache.log4j.Logger;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 import javax.net.ssl.*;
 import java.io.*;
@@ -18,21 +19,21 @@ import java.util.Map.Entry;
 
 
 /**
- * 
+ *
  * 版权所有:2016-贵州精英天成科技股份有限公司
- * 项目名称:plamsa-common   
+ * 项目名称:plamsa-common
  *
  * 类描述:
- * 类名称:com.elite.common.utils.httpclient.SimpleHttpUtils     
- * 创建人: xiezt 
- * 创建时间:2016年5月6日 下午4:25:28   
+ * 类名称:com.elite.common.utils.httpclient.SimpleHttpUtils
+ * 创建人: xiezt
+ * 创建时间:2016年5月6日 下午4:25:28
  * 修改人:
- * 修改时间:2016年5月6日 下午4:25:28   
- * 修改备注:   
+ * 修改时间:2016年5月6日 下午4:25:28
+ * 修改备注:
  * @version 1.0
  */
 public class SimpleHttpUtils {
-	private static final Logger logger = Logger.getLogger(SimpleHttpUtils.class);
+	private static final Logger logger = LoggerFactory.getLogger(SimpleHttpUtils.class);
 
 	/**
 	 * 默认字符编码
@@ -42,14 +43,14 @@ public class SimpleHttpUtils {
 	public static final String HTTP_METHOD_POST = "POST";
 
 	public static final String HTTP_METHOD_GET = "GET";
-	
+
 	public static final String HTTP_ERROR_MESSAGE = "http_error_message";
 
 	/**
 	 * 默认超时设置(20秒)
 	 */
 	public static final int DEFAULT_READ_TIMEOUT = 20000;
-	
+
 	public static final int DEFAULT_CONNECT_TIMEOUT = 10000;
 
 
@@ -59,9 +60,9 @@ public class SimpleHttpUtils {
 
 	//最多只读取5000字节
 	public static final int MAX_FETCHSIZE = 5000;
-	
+
 	private static TrustManager[] trustAnyManagers = new TrustManager[]{new TrustAnyTrustManager()};
-	
+
 	static {
 		System.setProperty("sun.net.inetaddr.ttl", "3600");
 	}
@@ -76,7 +77,7 @@ public class SimpleHttpUtils {
 
 	/**
 	 * 以建立HttpURLConnection方式发送请求
-	 * 
+	 *
 	 *            请求地址
 	 * @param params
 	 *            请求参数
@@ -103,7 +104,7 @@ public class SimpleHttpUtils {
 			return result.getContent();
 		}
 	}
-	
+
 	/**
 	 *
 	 * @return
@@ -122,7 +123,7 @@ public class SimpleHttpUtils {
 		boolean hostnameVerify = httpParam.isHostnameVerify();
 		TrustKeyStore trustKeyStore = httpParam.getTrustKeyStore();
 		ClientKeyStore clientKeyStore = httpParam.getClientKeyStore();
-		
+
 		if (url == null || url.trim().length() == 0) {
 			throw new IllegalArgumentException("invalid url : " + url);
 		}
@@ -132,7 +133,7 @@ public class SimpleHttpUtils {
 		Charset.forName(charSet);
 		HttpURLConnection urlConn = null;
 		URL destURL = null;
-		
+
 		String baseUrl = url.trim();
 		if (!baseUrl.toLowerCase().startsWith(HTTPS_PREFIX) && !baseUrl.toLowerCase().startsWith(HTTP_PREFIX)) {
 			baseUrl = HTTP_PREFIX + baseUrl;
@@ -148,14 +149,14 @@ public class SimpleHttpUtils {
 			throw new IllegalArgumentException("invalid http method : "
 					+ method);
 		}
-		
+
 		int index = baseUrl.indexOf("?");
 		if (index>0){
 			baseUrl = urlEncode(baseUrl, charSet);
 		}else if(index==0){
 			throw new IllegalArgumentException("invalid url : " + url);
 		}
-		
+
 		String queryString = mapToQueryString(parameters, charSet);
 		String targetUrl = "";
 		if (method.equals(HTTP_METHOD_POST)) {
@@ -170,10 +171,10 @@ public class SimpleHttpUtils {
 		try {
 			destURL = new URL(targetUrl);
 			urlConn = (HttpURLConnection)destURL.openConnection();
-			
+
 			setSSLSocketFactory(urlConn, sslVerify, hostnameVerify, trustKeyStore, clientKeyStore);
-			       
-			
+
+
 			boolean hasContentType = false;
 			boolean hasUserAgent = false;
 			for(String key : headers.keySet()){
@@ -190,7 +191,7 @@ public class SimpleHttpUtils {
 			if(!hasUserAgent){
 				headers.put("user-agent", "PlatSystem");
 			}
-			
+
 			if(headers!=null && !headers.isEmpty()){
 				for(Entry<String, Object> entry : headers.entrySet()){
 					String key = entry.getKey();
@@ -208,9 +209,9 @@ public class SimpleHttpUtils {
 			urlConn.setRequestMethod(method);
 			urlConn.setConnectTimeout(connectTimeout);
 			urlConn.setReadTimeout(readTimeout);
-			
-			
-			
+
+
+
 			if (method.equals(HTTP_METHOD_POST)) {
 				String postData = queryString.length()==0?httpParam.getPostData():queryString;
 				if(postData!=null && postData.trim().length()>0){
@@ -225,15 +226,15 @@ public class SimpleHttpUtils {
 			int responseCode = urlConn.getResponseCode();
 			Map<String, List<String>> responseHeaders = urlConn.getHeaderFields();
 			String contentType = urlConn.getContentType();
-				
+
 			SimpleHttpResult result = new SimpleHttpResult(responseCode);
 			result.setHeaders(responseHeaders);
 			result.setContentType(contentType);
-			
+
 			if(responseCode!=200 && ignoreContentIfUnsuccess){
 				return result;
 			}
-			
+
 			InputStream is = urlConn.getInputStream();
 			byte[] temp = new byte[1024];
 //			ByteBuffer buffer = ByteBuffer.allocate(maxResultSize);
@@ -262,7 +263,7 @@ public class SimpleHttpUtils {
 			}
 		}
 	}
-	
+
 	public static String urlEncode(String url, String charSet){
 		if(url==null || url.trim().length()==0){
 			return url;
@@ -299,7 +300,7 @@ public class SimpleHttpUtils {
 		}
 		return serviceUrl + "?" + newQueryString;
 	}
-	
+
 	public static String mapToQueryString(Map parameters, String charSet) {
 		String queryString = "";
 		if (parameters!=null && !parameters.isEmpty()) {
@@ -352,7 +353,7 @@ public class SimpleHttpUtils {
 		}
 		return map;
 	}
-	
+
 	private static void setSSLSocketFactory(HttpURLConnection urlConn, boolean sslVerify, boolean hostnameVerify, TrustKeyStore trustCertFactory, ClientKeyStore clientKeyFactory){
 		try{
 			SSLSocketFactory socketFactory = null;
@@ -373,7 +374,7 @@ public class SimpleHttpUtils {
 				sc.init(keyManagers, trustManagers, new java.security.SecureRandom());
 				socketFactory = sc.getSocketFactory();
 			}
-		
+
 			if(urlConn instanceof HttpsURLConnection){
 				HttpsURLConnection httpsUrlCon = (HttpsURLConnection)urlConn;
 				if(socketFactory!=null){
@@ -398,7 +399,7 @@ public class SimpleHttpUtils {
 			logger.error(e.getMessage(), e);
 		}
 	}
-	
+
 	private static List<String> makeStringList(Object value){
     	if (value == null) {
     		value = "";
@@ -411,7 +412,7 @@ public class SimpleHttpUtils {
             }
             return result;
         }
-    	
+
         if (value instanceof Iterator) {
             Iterator it = (Iterator)value;
             while(it.hasNext()){
@@ -420,7 +421,7 @@ public class SimpleHttpUtils {
             }
             return result;
         }
-        
+
         if(value instanceof Collection){
         	for(Object obj : (Collection)value){
         		result.add(obj!=null?obj.toString():"");
@@ -439,32 +440,32 @@ public class SimpleHttpUtils {
         result.add(value.toString());
         return result;
     }
-	
+
 	private static class TrustAnyTrustManager implements X509TrustManager {
-	    
+
         public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException {
         }
-    
+
         public void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException {
         }
-    
+
         public X509Certificate[] getAcceptedIssuers() {
             return new X509Certificate[]{};
         }
     }
-    
+
     private static class TrustAnyHostnameVerifier implements HostnameVerifier {
         public boolean verify(String hostname, SSLSession session) {
             return true;
         }
     }
-    
+
     private static class  TrustAnyHostnameVerifierOld implements com.sun.net.ssl.HostnameVerifier{
 		public boolean verify(String arg0, String arg1) {
 			return true;
 		}
     }
-    
+
     public static ClientKeyStore loadClientKeyStore(String keyStorePath, String keyStorePass, String privateKeyPass){
     	try{
     		return loadClientKeyStore(new FileInputStream(keyStorePath), keyStorePass, privateKeyPass);
@@ -473,7 +474,7 @@ public class SimpleHttpUtils {
     		return null;
     	}
     }
-    
+
     public static ClientKeyStore loadClientKeyStore(InputStream keyStoreStream, String keyStorePass, String privateKeyPass){
     	try{
     		KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
@@ -486,7 +487,7 @@ public class SimpleHttpUtils {
     		return null;
     	}
     }
-    
+
     public static TrustKeyStore loadTrustKeyStore(String keyStorePath, String keyStorePass){
     	try{
     		return loadTrustKeyStore(new FileInputStream(keyStorePath), keyStorePass);
@@ -495,7 +496,7 @@ public class SimpleHttpUtils {
     		return null;
     	}
     }
-    
+
     public static TrustKeyStore loadTrustKeyStore(InputStream keyStoreStream, String keyStorePass){
     	try{
     		TrustManagerFactory tmf = TrustManagerFactory.getInstance("SunX509");
@@ -519,13 +520,13 @@ public class SimpleHttpUtils {
     	return 0;
     }
 	public static void test2() {
-		
+
 		SimpleHttpParam http = new SimpleHttpParam("https://www.gdgwpay.com/");
 		http.setConnectTimeout(5000);
 		http.setMethod("POST");
 		SimpleHttpResult request=SimpleHttpUtils.httpRequest(http);
 		String html = request.getContent();
 		System.out.println(html);
-				
+
 	}
-}
+}

+ 16 - 14
src/main/java/com/hywa/banktest/bankframework/utils/rsa/DES.java

@@ -1,6 +1,8 @@
 package com.hywa.banktest.bankframework.utils.rsa;
 
-import org.apache.log4j.Logger;
+import com.alibaba.fastjson.JSONObject;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 import javax.crypto.Cipher;
 import javax.crypto.SecretKey;
@@ -10,17 +12,17 @@ import java.security.spec.AlgorithmParameterSpec;
 import java.util.Arrays;
 
 /**
- * 
+ *
  * 版权所有:2016-贵州精英天成科技股份有限公司
- * 项目名称:plamsa-common   
+ * 项目名称:plamsa-common
  *
  * 类描述:
- * 类名称:com.elite.common.utils.rsa.DES     
- * 创建人: xiezt 
- * 创建时间:2016年5月6日 下午5:10:30   
+ * 类名称:com.elite.common.utils.rsa.DES
+ * 创建人: xiezt
+ * 创建时间:2016年5月6日 下午5:10:30
  * 修改人:
- * 修改时间:2016年5月6日 下午5:10:30   
- * 修改备注:   
+ * 修改时间:2016年5月6日 下午5:10:30
+ * 修改备注:
  * @version 1.0
  */
 public class DES {
@@ -29,11 +31,11 @@ public class DES {
 	// 若采用NoPadding模式,data长度必须是8的倍数
 	public static final String DES_ALGORITHM = "DES/CBC/NoPadding";
 
-	private static Logger logger = Logger.getLogger(DES.class);
+	private static Logger logger = LoggerFactory.getLogger(DES.class);
 
 	/**
 	 * DES-CBC模式加密
-	 * 
+	 *
 	 * @param plainData
 	 *            明文
 	 * @param keyData
@@ -60,7 +62,7 @@ public class DES {
 
 			encryptData = cipher.doFinal(plainData);
 		} catch (Exception e) {
-			logger.error(e);
+			logger.error(JSONObject.toJSONString(e));
 		}
 
 		return encryptData;
@@ -68,8 +70,8 @@ public class DES {
 
 	/**
 	 * DES-CBC模式解密
-	 * 
-	 * @param plainData
+	 *
+	 * @param ivData
 	 *            密文
 	 * @param keyData
 	 *            密钥
@@ -87,7 +89,7 @@ public class DES {
 			plainData = cipher.doFinal(encryptData);
 		} catch (Exception e) {
 			e.printStackTrace();
-			logger.error(e);
+			logger.error(JSONObject.toJSONString(e));
 		}
 		if (plainData != null){
 			int len = plainData.length;

+ 14 - 12
src/main/java/com/hywa/banktest/bankframework/utils/rsa/MD5.java

@@ -2,9 +2,11 @@ package com.hywa.banktest.bankframework.utils.rsa;
 
 
 
+import com.alibaba.fastjson.JSONObject;
 import com.hywa.banktest.bankframework.utils.string.StringUtil;
 import org.apache.commons.codec.digest.DigestUtils;
-import org.apache.log4j.Logger;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 import java.io.UnsupportedEncodingException;
 import java.security.MessageDigest;
@@ -13,24 +15,24 @@ import java.security.NoSuchAlgorithmException;
 /**
  * MD5工具类
  * 版权所有:2016-贵州精英天成科技股份有限公司
- * 项目名称:plamsa-common   
+ * 项目名称:plamsa-common
  *
  * 类描述:
- * 类名称:com.elite.common.utils.rsa.MD5     
- * 创建人: xiezt 
- * 创建时间:2016年5月6日 下午5:11:54   
+ * 类名称:com.elite.common.utils.rsa.MD5
+ * 创建人: xiezt
+ * 创建时间:2016年5月6日 下午5:11:54
  * 修改人:
- * 修改时间:2016年5月6日 下午5:11:54   
- * 修改备注:   
+ * 修改时间:2016年5月6日 下午5:11:54
+ * 修改备注:
  * @version 1.0
  */
 public class MD5 {
 
-	private static Logger logger = Logger.getLogger(MD5.class);
+	private static Logger logger = LoggerFactory.getLogger(MD5.class);
 
 	/**
 	 * 获取MD5消息摘要
-	 * 
+	 *
 	 * @param data
 	 *            源数据
 	 * @return MD5消息摘要
@@ -58,9 +60,9 @@ public class MD5 {
 				messageDigest.update(str.getBytes("UTF-8"));
 			}
 		} catch (NoSuchAlgorithmException e) {
-			logger.error(e);
+			logger.error(JSONObject.toJSONString(e));
 		} catch (UnsupportedEncodingException e) {
-			logger.error(e);
+			logger.error(JSONObject.toJSONString(e));
 		}
 
 		byte[] byteArray = messageDigest.digest();
@@ -108,6 +110,6 @@ public class MD5 {
 	public static void main(String[] args){
 		System.out.println(MD5.getMD5Str("gysjcjk_yw_JY_123"));
 		System.out.println(DigestUtils.md5Hex("chenjianhua").toUpperCase());
-		
+
 	}
 }

+ 15 - 13
src/main/java/com/hywa/banktest/bankframework/utils/rsa/RSAEncrpt.java

@@ -1,6 +1,8 @@
 package com.hywa.banktest.bankframework.utils.rsa;
 
-import org.apache.log4j.Logger;
+import com.alibaba.fastjson.JSONObject;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 import javax.crypto.BadPaddingException;
 import javax.crypto.Cipher;
@@ -19,7 +21,7 @@ import java.security.spec.X509EncodedKeySpec;
 
 public class RSAEncrpt {
 
-	private static Logger logger = Logger.getLogger(RSAEncrpt.class);
+	private static Logger logger = LoggerFactory.getLogger(RSAEncrpt.class);
 
 	/**
 	 * 私钥
@@ -38,7 +40,7 @@ public class RSAEncrpt {
 
 	/**
 	 * 获取私钥
-	 * 
+	 *
 	 * @return 当前的私钥对象
 	 */
 	public RSAPrivateKey getPrivateKey() {
@@ -47,7 +49,7 @@ public class RSAEncrpt {
 
 	/**
 	 * 获取公钥
-	 * 
+	 *
 	 * @return 当前的公钥对象
 	 */
 	public RSAPublicKey getPublicKey() {
@@ -62,7 +64,7 @@ public class RSAEncrpt {
 		try {
 			keyPairGen = KeyPairGenerator.getInstance("RSA");
 		} catch (NoSuchAlgorithmException e) {
-			logger.error(e);
+			logger.error(JSONObject.toJSONString(e));
 		}
 		keyPairGen.initialize(1024, new SecureRandom());
 		KeyPair keyPair = keyPairGen.generateKeyPair();
@@ -72,7 +74,7 @@ public class RSAEncrpt {
 
 	/**
 	 * 从文件中输入流中加载公钥
-	 * 
+	 *
 	 * @param in
 	 *            公钥输入流
 	 * @throws Exception
@@ -101,7 +103,7 @@ public class RSAEncrpt {
 
 	/**
 	 * 从字符串中加载公钥
-	 * 
+	 *
 	 * @param publicKeyStr
 	 *            公钥数据字符串
 	 * @throws Exception
@@ -124,7 +126,7 @@ public class RSAEncrpt {
 
 	/**
 	 * 从文件中加载私钥
-	 * 
+	 *
 	 * @param keyFileName
 	 *            私钥文件名
 	 * @return 是否成功
@@ -168,7 +170,7 @@ public class RSAEncrpt {
 
 	/**
 	 * 加密过程
-	 * 
+	 *
 	 * @param publicKey
 	 *            公钥
 	 * @param plainTextData
@@ -192,7 +194,7 @@ public class RSAEncrpt {
 		} catch (NoSuchAlgorithmException e) {
 			throw new Exception("无此加密算法");
 		} catch (NoSuchPaddingException e) {
-			logger.error(e);
+			logger.error(JSONObject.toJSONString(e));
 			return null;
 		} catch (InvalidKeyException e) {
 			throw new Exception("加密公钥非法,请检查");
@@ -216,7 +218,7 @@ public class RSAEncrpt {
 
 	/**
 	 * 解密过程
-	 * 
+	 *
 	 * @param privateKey
 	 *            私钥
 	 * @param cipherData
@@ -238,7 +240,7 @@ public class RSAEncrpt {
 		} catch (NoSuchAlgorithmException e) {
 			throw new Exception("无此解密算法");
 		} catch (NoSuchPaddingException e) {
-			logger.error(e);
+			logger.error(JSONObject.toJSONString(e));
 			return null;
 		} catch (InvalidKeyException e) {
 			throw new Exception("解密私钥非法,请检查");
@@ -262,7 +264,7 @@ public class RSAEncrpt {
 
 	/**
 	 * 字节数据转十六进制字符串
-	 * 
+	 *
 	 * @param data
 	 *            输入数据
 	 * @return 十六进制内容

+ 12 - 10
src/main/java/com/hywa/banktest/bankframework/utils/rsa/RsaSign.java

@@ -1,6 +1,8 @@
 package com.hywa.banktest.bankframework.utils.rsa;
 
-import org.apache.log4j.Logger;
+import com.alibaba.fastjson.JSONObject;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 import java.security.KeyFactory;
 import java.security.PrivateKey;
@@ -11,20 +13,20 @@ import java.security.spec.X509EncodedKeySpec;
 /**
  * RSA工具类
  * 版权所有:2016-贵州精英天成科技股份有限公司
- * 项目名称:plamsa-common   
+ * 项目名称:plamsa-common
  *
  * 类描述:
- * 类名称:com.elite.common.utils.rsa.RsaSign     
- * 创建人: xiezt 
- * 创建时间:2016年5月6日 下午5:15:05   
+ * 类名称:com.elite.common.utils.rsa.RsaSign
+ * 创建人: xiezt
+ * 创建时间:2016年5月6日 下午5:15:05
  * 修改人:
- * 修改时间:2016年5月6日 下午5:15:05   
- * 修改备注:   
+ * 修改时间:2016年5月6日 下午5:15:05
+ * 修改备注:
  * @version 1.0
  */
 public class RsaSign {
 
-	private static Logger logger = Logger.getLogger(RsaSign.class);
+	private static Logger logger = LoggerFactory.getLogger(RsaSign.class);
 
 	public static final String SIGN_ALGORITHMS = "SHA1WithRSA";
 
@@ -44,7 +46,7 @@ public class RsaSign {
 
 			return Base64.encode(signed);
 		} catch (Exception e) {
-			logger.error(e);
+			logger.error(JSONObject.toJSONString(e));
 		}
 		return null;
 	}
@@ -64,7 +66,7 @@ public class RsaSign {
 			return bverify;
 
 		} catch (Exception e) {
-			logger.error(e);
+			logger.error(JSONObject.toJSONString(e));
 		}
 
 		return false;

+ 30 - 28
src/main/java/com/hywa/banktest/bankframework/utils/string/StringTools.java

@@ -2,8 +2,10 @@
 package com.hywa.banktest.bankframework.utils.string;
 
 
+import com.alibaba.fastjson.JSONObject;
 import com.hywa.banktest.bankframework.utils.validate.ValidateUtils;
-import org.apache.log4j.Logger;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 import org.springframework.util.DigestUtils;
 
 import java.io.ByteArrayOutputStream;
@@ -18,11 +20,11 @@ import java.util.List;
 
 public final class StringTools {
 
-	private static Logger logger = Logger.getLogger(StringTools.class);
+	private static Logger logger = LoggerFactory.getLogger(StringTools.class);
 
 	/**
 	 * 判断某个字符串是否包含在某个数组中。如果数组为null则返回false
-	 * 
+	 *
 	 * @param str
 	 * @param array
 	 * @return
@@ -84,7 +86,7 @@ public final class StringTools {
 				}
 			}
 		} catch (Exception e) {
-			logger.error(e);
+			logger.error(JSONObject.toJSONString(e));
 		}
 		sb.append("]");
 		return sb.toString();
@@ -168,7 +170,7 @@ public final class StringTools {
 
 	/**
 	 * 将数组进行排序然后再组成字符串
-	 * 
+	 *
 	 * @param totalStringList
 	 * @return
 	 */
@@ -249,7 +251,7 @@ public final class StringTools {
 
 	/**
 	 * 对字符进行URL编码。客户端使用js的decodeURIComponent进行解码
-	 * 
+	 *
 	 * @param str
 	 *            字符串源码
 	 * @return URL编码后的字符串
@@ -264,7 +266,7 @@ public final class StringTools {
 
 	/**
 	 * 对url进行解码
-	 * 
+	 *
 	 * @param str
 	 * @return
 	 */
@@ -299,7 +301,7 @@ public final class StringTools {
 
 	/**
 	 * 将字符串中可能包含有非法的sql字符进行过滤,例如过滤'。
-	 * 
+	 *
 	 * @param str
 	 *            需要进行过滤的字符串
 	 * @return 过滤后的安全字符串
@@ -316,7 +318,7 @@ public final class StringTools {
 
 	/**
 	 * 将数值转换成特定长度的字符串
-	 * 
+	 *
 	 * @param value
 	 * @param length
 	 * @return
@@ -327,7 +329,7 @@ public final class StringTools {
 			try {
 				throw new Exception("定义的长度小于数值的长度。");
 			} catch (Exception e) {
-				logger.error(e);
+				logger.error(JSONObject.toJSONString(e));
 			}
 		}
 		if (val.length() < length) {
@@ -339,7 +341,7 @@ public final class StringTools {
 
 	/**
 	 * 将字符串中可能包含有非法的sql字符进行过滤,例如过滤'。
-	 * 
+	 *
 	 * @param obj
 	 *            过滤对象
 	 * @return 过滤后的安全字符串
@@ -353,7 +355,7 @@ public final class StringTools {
 
 	/**
 	 * 将对象安全转换成int类型,失败时返回0
-	 * 
+	 *
 	 * @param o
 	 *            目标对象
 	 * @return int数字
@@ -370,7 +372,7 @@ public final class StringTools {
 
 	/**
 	 * 将对象安全转换成short类型
-	 * 
+	 *
 	 * @param o
 	 *            目标对象
 	 * @return short数字
@@ -387,7 +389,7 @@ public final class StringTools {
 
 	/**
 	 * 将对象安全转换成long类型
-	 * 
+	 *
 	 * @param o
 	 *            目标对象
 	 * @return long数字
@@ -404,7 +406,7 @@ public final class StringTools {
 
 	/**
 	 * 将对象安全转换成double类型
-	 * 
+	 *
 	 * @param o
 	 *            目标对象
 	 * @return double数字
@@ -428,7 +430,7 @@ public final class StringTools {
 
 	/**
 	 * 尝试将对象转换成double类型,如果失败时也不抛出异常而返回0
-	 * 
+	 *
 	 * @param fieldValue
 	 * @return
 	 */
@@ -447,7 +449,7 @@ public final class StringTools {
 
 	/**
 	 * 用md5算法对字符串进行加密
-	 * 
+	 *
 	 * @param source
 	 * @param key
 	 * @return
@@ -464,7 +466,7 @@ public final class StringTools {
 
 	/**
 	 * 将手机号码中的中间四位转换成*
-	 * 
+	 *
 	 * @param src
 	 * @return
 	 */
@@ -486,8 +488,8 @@ public final class StringTools {
 
 	/**
 	 * 将银行卡号限前4后3中间用****填充
-	 * 
-	 * 
+	 *
+	 *
 	 * @param src
 	 * @return
 	 */
@@ -500,8 +502,8 @@ public final class StringTools {
 
 	/**
 	 * 将真实姓名限前**后1个名字
-	 * 
-	 * 
+	 *
+	 *
 	 * @param src
 	 * @return
 	 */
@@ -514,7 +516,7 @@ public final class StringTools {
 
 	/**
 	 * 将收款人按长度前面用**显示
-	 * 
+	 *
 	 * @param src
 	 * @return
 	 */
@@ -546,8 +548,8 @@ public final class StringTools {
 
 	/**
 	 * 将身份证号限前4后4中间用****填充
-	 * 
-	 * 
+	 *
+	 *
 	 * @param src
 	 * @return
 	 */
@@ -560,8 +562,8 @@ public final class StringTools {
 
 	/**
 	 * 将email限前4后4中间用****填充
-	 * 
-	 * 
+	 *
+	 *
 	 * @param src
 	 * @return
 	 */
@@ -574,7 +576,7 @@ public final class StringTools {
 
 	/**
 	 * 去空格
-	 * 
+	 *
 	 * @param param
 	 * @return
 	 */

+ 8 - 7
src/main/java/templateservice/FileKit.java

@@ -12,10 +12,11 @@ import java.io.InputStream;
 import java.io.InputStreamReader;
 import java.io.OutputStream;
 import javax.imageio.ImageIO;
-import org.apache.log4j.Logger;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 public class FileKit {
-	static Logger log = Logger.getLogger(FileKit.class);
+	static Logger log = LoggerFactory.getLogger(FileKit.class);
 
 	public static void deleteFile(String filePath) {
 		File file = new File(filePath);
@@ -26,7 +27,7 @@ public class FileKit {
 
 	/**
 	 * 将输入注写到file对象中
-	 * 
+	 *
 	 * @param ins
 	 *            输入流
 	 * @param file
@@ -46,7 +47,7 @@ public class FileKit {
 
 	/**
 	 * 得到文件名不包含后缀
-	 * 
+	 *
 	 * @param filePath
 	 * @return
 	 */
@@ -57,7 +58,7 @@ public class FileKit {
 
 	/**
 	 * 创建目录
-	 * 
+	 *
 	 * @param dirPath
 	 */
 	public static void createDir(String dirPath) {
@@ -69,7 +70,7 @@ public class FileKit {
 
 	/**
 	 * 创建文件
-	 * 
+	 *
 	 * @param filePath
 	 * @return
 	 */
@@ -91,7 +92,7 @@ public class FileKit {
 
 	/**
 	 * 文件类型转二进制
-	 * 
+	 *
 	 * @param file
 	 * @return
 	 */