上一页 1 2 3 4 5 6 7 8 ··· 41 下一页
摘要: 把log4j.properties放在src下的config文件夹里。如果报错Log4j不能找到配置文件,使用的是myeclipse的话,在config文件夹上右键–》buildpath–>use as source folder即可。原因如下: 我添加log4j.jar后删除了c... 阅读全文
posted @ 2017-02-14 14:26 StevenLuke 阅读(233) 评论(0) 推荐(0) 编辑
摘要: //4108k, 485ms#include #include using namespace std;int c[1010][1010] ;int lowbit(int x){ return x & -x ;}void add(int i,int j,int d){ ... 阅读全文
posted @ 2017-02-12 13:28 StevenLuke 阅读(86) 评论(0) 推荐(0) 编辑
摘要: Java面试题全集(上) Java面试题全集(中) Java面试题全集(下) 骆昊的技术专栏 阅读全文
posted @ 2017-02-10 22:21 StevenLuke 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 平常的java开发中,程序员在某个类中需要依赖其它类的方法,则通常是new一个依赖类再调用类实例的方法,这种开发存在的问题是new的类实例不好统一管理,spring提出了依赖注入的思想,即依赖类不由程序员实例化,而是通过spring容器帮我们new指定实例并且将实例注入到需要该对象... 阅读全文
posted @ 2017-02-10 14:19 StevenLuke 阅读(187) 评论(0) 推荐(0) 编辑
摘要: springmvc RequestParam中文乱码 在xml里添加 encodingFilter org.springframework.web.filter.CharacterEncodingFilter encoding UTF... 阅读全文
posted @ 2017-01-16 15:03 StevenLuke 阅读(89) 评论(0) 推荐(0) 编辑
摘要: originale blog:here注:此篇文章为本人参加各大IT公司笔试、面试后的考点总结大纲(包括百度,搜狐,爱奇艺,腾讯等) 题目解答请依次查看其他几篇博客: Java基础篇:http://blog.csdn.net/u014206526/article/details... 阅读全文
posted @ 2017-01-15 17:56 StevenLuke 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 当使用rest风格出现404错误时,web.xml里 blog org.springframework.web.servlet.DispatcherServlet contextConfigLocation ... 阅读全文
posted @ 2017-01-13 14:09 StevenLuke 阅读(380) 评论(0) 推荐(0) 编辑
摘要: ERROR 1045 (28000): Access denied for user ‘root’@’localhost’ (using password: YSE)windowns环境下:net stop mysql进入mysqld.exe的路径,mysqld -nt –skip... 阅读全文
posted @ 2017-01-10 16:35 StevenLuke 阅读(374) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/wangyoujin321/article/details/51472606 阅读全文
posted @ 2017-01-06 17:48 StevenLuke 阅读(89) 评论(0) 推荐(0) 编辑
摘要: idea from here这是一篇使用编辑距离对英文词语就行简单纠错的文章。code:import refrom collections import Counterdef words(text): return re.findall(r'\w+', text.lower())W... 阅读全文
posted @ 2016-12-31 20:31 StevenLuke 阅读(946) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 41 下一页