2016年8月30日
摘要:
一、创建maven工程 1、创建maven的的web功能 2、在创建完成后,可能发现功能有错误,在eclipse中的错误描述如下: 解决办法如下: 步骤:bulid Path --> Configure Bulid Path --> Libraries --> add Library --> Ser
阅读全文
posted @ 2016-08-30 23:35
月下美妞1314
阅读(644)
推荐(0)
2016年8月27日
摘要:
usr/local/maven true false false org.codehaus.mojo myproxy true http prox...
阅读全文
posted @ 2016-08-27 09:19
月下美妞1314
阅读(191)
推荐(0)
2016年8月16日
摘要:
要下载jar包 import java.io.FileOutputStream; import java.io.IOException; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.client.HttpClient; import org.apa...
阅读全文
posted @ 2016-08-16 20:50
月下美妞1314
阅读(126)
推荐(0)
2016年8月12日
posted @ 2016-08-12 17:41
月下美妞1314
阅读(5)
推荐(0)
2016年8月10日
摘要:
1、定一个枚举类 2、在另一个方法中对枚举进行调用 如果想了解更多枚举的用法,可以参考http://www.cnblogs.com/happyPawpaw/archive/2013/04/09/3009553.html
阅读全文
posted @ 2016-08-10 23:35
月下美妞1314
阅读(9313)
推荐(0)
2016年7月21日
摘要:
一、相关概念 装配(wiring):创建应用对象之间协作关系的行为; 二、Spring配置的可选方案 Spring容器负责创建应用程序中bean,并通过DI来协调这些对象之间的关系。Spring是如何装配bean了?其中主要有三种方式,如下: 其中,最为推荐的方式是自动装配,但有时候不得已的情况下,
阅读全文
posted @ 2016-07-21 20:59
月下美妞1314
阅读(247)
推荐(0)
2016年6月25日
摘要:
factory org.apache.commons.dbcp.BasicDataSourceFactory driverClassName ...
阅读全文
posted @ 2016-06-25 15:24
月下美妞1314
阅读(817)
推荐(0)
2014年10月22日
摘要:
一、题目描述Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".二、分析要注意几点:1、当字符串的头部或者尾部存...
阅读全文
posted @ 2014-10-22 20:20
月下美妞1314
阅读(214)
推荐(0)
摘要:
一、题目描述Follow upfor "Find Minimum in Rotated Sorted Array":What ifduplicatesare allowed?Would this affect the run-time complexity? How and why?Suppose ...
阅读全文
posted @ 2014-10-22 18:57
月下美妞1314
阅读(772)
推荐(0)
2014年10月17日
摘要:
一、题目描述Suppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e.,0 1 2 4 5 6 7might become4 5 6 7 0 1 2).Find the minimum element...
阅读全文
posted @ 2014-10-17 22:08
月下美妞1314
阅读(1052)
推荐(0)