- 浏览: 36453 次
- 性别:
- 来自: 北京
最新评论
文章列表
Junit+spring+log4j整合之所以麻烦,是因为spring与log4j的整合,是放在web.xml里的,随tomcat启动后,spring才会加载log4j,而用junit测试是不需要tomcat启动的,所以Junit与log4j的整合才比较费劲。Junit使用spring时,若spring没加载到log4 ...
public String xmlHttpPost(String requestInfo, String urlAddress, boolean isProxy,
String proxyHost, int proxyPort, ContentType contentType) {
String responseInfo = null;
InputStream inputResStream = null;
try {
CloseableHttpClient httpClient = null;
if (isProxy) {
HttpHo ...