- 浏览: 534219 次
- 性别:
- 来自: 深圳
最新评论
-
gaolegao2008:
如果报 is_volum 列名找不到之类的,我是从新部署了一个 ...
spring quartz 定时器报错 -
gaolegao2008:
部署到linux上时,还有一种情况就是mysql数据库区分大小 ...
spring quartz 定时器报错 -
qq123zhz:
yahier 写道 对我有帮助,但我看的一个demo程序,却没 ...
spring quartz 定时器报错 -
qq123zhz:
这个要在eclipse的插件环境下运行的,你不懂eclipse ...
GEF 自动布局 -
qq123zhz:
这个很久了,不记得啥时候写的了
json转为Map
文章列表
哈佛有一个著名的理论:人的差别在于业余时间,而一个人的命运决定于晚上8点到10点之间。每晚抽出2个小时的时间用来阅读、进修、思考或参加有意的演讲、讨论,你会发现,你的人生正在发生改变,坚持数年之后,成功会向 ...
人生要结交两种人:一,良师,二,益友。练就两项本领:一,做事让人感动,二,说话让人喜欢。能吃得下两样东西:一,吃苦,二,吃亏。自觉培养两种习惯:一,看好书,二,听演讲。始终把握两个原则:一,微观上问心无愧,二,宏观上遵纪守法.争取两个极致:一,把潜能发挥到最大,二,把生命延续到极致。人生要做两件事:第一件事,就是感恩;第二件事,就是结缘。人生要迈两道坎:情与钱。人生要喘两种气:一种是生命之气,一种是精神之气。人生要会两件事:学会挣钱,学会思考。人生的两个基本点:糊涂点,潇洒点。人生的两种状态:谋生,乐生。
eclipse Resource 资料
- 博客分类:
- java
IWorkspace/IWorkspaceRoot/IProject/IFolder/IFile/IResource/IPath/IScope/IContainerIResourceChangeListener/IResourceChangeEvent/IResourceDeltaVisitor
//访问工作空间IWorkspace workspace = ResourcesPlugin.getWorkspace();
//获得工作空间中的资源层次结构的顶部IWorkspaceRoot myWorkspaceRoot = ResourcesPlugin.getWorkspace().get ...
Was doing adocker-machine env defaultwhere it seems to be getting stuck (waiting longer than usual) and when I open Virtualbox and look at the preview, it is already initialized and ready to accept commands but my terminal command is still waiting.
Then when I exit (e.g. Ctrl+C or Cmd+C) this error ...
list.AddAll 去重复
- 博客分类:
- java
问题描述:
有List A和B,A、B中元素都是可保证没有重复的,现要合并A、B得到新的List C,要求C中不能有重复元素
我们架构师的反应:
A.removeAll(B);
A.addAll(B);
<div ng-show='status'>
1、 如果status==true,改div会显示,反之隐藏。
2、但在跨越上下文的情况下,需要调用$scope.$apply()
AngularJS does not allow duplicates in a ng-repeat directive. This means if you are trying to do the following, you will get an error.
1
2
3
// the below will throw an error
Error: Duplicates in a repeater are not allowed. Repeater: row in [1,1,1] key: number:1
<div ng-repea ...
eclipse jdt关于builder的英文资料。。。。。。。。。
JDT Plug-in Developer Guide > Programmer's Guide > JDT Core
Setting the Java build path
This section describes how to set the Java build path. The build path is the classpath that is used for building a Java project (IJavaProject).
A classpath is simply an array of classpath entries (ICl ...
xstream 下划线_问题
- 博客分类:
- java
最近在使用xtream 1.4.3,出现了如下的问题:
<?xml version="1.0" encoding="GBK"?>
<window cols="3">
<account name="account10" title="账号_validateRule" allowInput="true"
allowInput_account="true" validateRule="required ...
On previous versions, you could call it like for other data :
obj.data('events');
In jQuery 1.8, this direct access was removed, so in recent versions you must call it like this :
MessageConsole.setWaterMarks(5000, 8000)
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException {
HttpServletRequest req = (HttpServletRequest) request;
if (req.getHeader("X-Requested-With") != null && req.getHeader("X-Requested-With&quo ...
import java.io.IOException;
import java.io.Writer;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import freemarker.core.Environment;
import freemarker.ext.beans.ArrayModel;
import freemarker.template.ObjectWrapper;
import freemarker.template.SimpleCollection;
imp ...
遇到问题:“Radio button在IE6、IE7点击没有反应总是选不中,而在其他版本IE及其他浏览器中正常运行”。
解决方案:在IE6、IE7下,Radio input是通过name属性来分组识别,实现单选的。所以name属性是个必须的字段,具有互斥关系的Radio button需要具有相同的name属性值。即便,只有一个Radiobutton时,这个name属性也是必须的。