- 浏览: 13342 次
- 性别:
- 来自: 杭州
最新评论
文章列表
最近遭遇collection reference错误使用的bug,原始代码:
List<CallbackRequestModel> callbackModels = new ArrayList<CallbackRequestModel>(datas.size());
for (TaskData<BatchUserData> taskData : datas) {CallbackRequestModel request = new CallbackRequestModel();BatchUserData user = taskData.getData(); ...
目录:[ - ]
方法
安装插件:
配置插件:
使用插件
测试
对于一个团队来说,使用统一的代码格式是非常重要的,否则在使用版本控制工具时
ubuntu software center: install python-wxtools
http://www.wxpython.org/
/etc/apt/sources.list
Eclipse 代码补全
在做Eclipse项目的时候,发现代码补全功能不太好,总是需要在点击 “.”号之后才能出现代码提示的功能。不想Visual Studio里面点击一个字母就出现代码提示。当然Visual Studio里面如果增加了Visual Assistant那就更加如虎添翼了。所以google了一下Eclipse里面怎么也实现和Visual Studiao一样的代码补全功能。下面是搜索到的文章。
打开 Eclipse -> Window -> Perferences,会打开个Perferences 的设置界面.找到Java 下的 Editor ...
XML Namespaces学习
- 博客分类:
- java开发
XML Namespaces provide a method to avoid element name conflicts.
Name Conflicts
In XML, element names are defined by the developer. This often results in a conflict when trying to mix XML documents from different XML applications.
This XML carries HTML table information:
<table> &l ...
log4j.appender.stdout=org.apache.log4j.ConsoleAppenderlog4j.appender.stdout.layout=org.apache.log4j.PatternLayoutlog4j.appender.stdout.layout.ConversionPattern=%d %p [%c] - %m%n
log4j.logger.com.ibatis=debuglog4j.logger.com.ibatis.common.jdbc.SimpleDataSource=debuglog4j.logger.com.ibatis.common.j ...
在前台页面编码两次:
url=encodeURI(url); url=encodeURI(url);
举个例子
usid为要传递到servlet的中文参数var usid = encodeURI(sid);//uri编码
usid=encodeURI(usid);//再次uri编码 var url = "selectNameServlet?sid=" +usid;//合并构造url if (window.XMLHttpRequest) { req = new XMLHttpRequest(); } else if (window.Activ ...
今天在linux环境下用eclipse学习spring AOP,在实现MethodBeforeAdvice 这个接口时
代码如下:
public class LogPeople implements MethodBeforeAdvice{
@Override
public void before(Method arg0, Object[] arg1, Object arg2)
throws Throwable {
// TODO Auto-generated method stub
}
报这个错误:The type org.aopalliance.aop.Advice ...