摘要: Caused by: org.hibernate.PropertyValueException: not-null property references a null or transient value: com.hneb.lbpc.appointment.vo.WorkSchedVO.COff 阅读全文
posted @ 2018-01-22 17:06 墨.荷 阅读(831) 评论(0) 推荐(0)
摘要: String hql="from XxxVO where id in (?)";//这里有个真地方 注意一下,就是在设置参数的时候使用setParametList(lists);接收一个集合 setParameter是从0开始的 阅读全文
posted @ 2018-01-22 17:05 墨.荷 阅读(1336) 评论(0) 推荐(0)
摘要: 导出File-->export-->General-->Preferences-->勾选ExportAll-->选择你要保存To preferences file (.epf)文件的位置-->finish 导入File-->import-->General-->Preferences-->勾选Imp 阅读全文
posted @ 2018-01-22 17:01 墨.荷 阅读(1242) 评论(0) 推荐(0)
摘要: 方法一 前提是比较过右击被覆盖的文件-->replace with--> local history 可以查到你最近比较过得信息 阅读全文
posted @ 2018-01-22 17:00 墨.荷 阅读(2788) 评论(0) 推荐(0)
摘要: 打开 这个文件夹 E:\LearnSoftWare\java\IDE\eclipse\configuration\.settings(你自己的解压路径)在打开 org.eclipse.ui.ide.prefs这个文件MAX_RECENT_WORKSPACES=10RECENT_WORKSPACES= 阅读全文
posted @ 2018-01-22 16:58 墨.荷 阅读(424) 评论(0) 推荐(0)
摘要: debug模式下eclipse总是自动跳到ThreadPoolExecutor解决方案在eclipse中点击Window->Preference->Java->Debug将“Suspend execution on uncaught exceptions”的勾去掉即可 阅读全文
posted @ 2018-01-22 16:56 墨.荷 阅读(157) 评论(0) 推荐(0)
摘要: linux安装时可以之分4个区分,也有人之分2区(/,交换区),转一个linux20G就够了 1 /boot 磁盘格式 ext4 我们可以先分 boot区因为boot空间要求很小,用于存放开机时的系统引导文件,一盘分个200M足够了 2 /home 磁盘格式 ext4 home分区用于存放用户信息用 阅读全文
posted @ 2017-06-23 13:50 墨.荷 阅读(759) 评论(0) 推荐(0)
摘要: 1,一种是xxxx.tar.gz源码包,源码包安装容易出错,但是速度因该是比较快的 五步搞定 1.解压源码包 tar -zxvf xxx.tar.gz 参数是什么意思有兴趣的可以去百度一下 2.检查环境,该软件安装时所需要的运行库是否有 ./configure 3.编译源码 make 4.开始安装 阅读全文
posted @ 2017-06-23 13:32 墨.荷 阅读(295) 评论(0) 推荐(0)
摘要: 1,点开任意一个盘 2 更改查看视图,且选择你喜欢的视图模式 3 应用到所有的盘中 ok啦 阅读全文
posted @ 2017-06-23 13:07 墨.荷 阅读(435) 评论(0) 推荐(0)
摘要: 1.HashMap和HashTable的区别? HashMap不是线程安全的它的操作方法没有进行同步处理 HashMap允许key为空 HashTable是线程安全的它的操作方法加以了synchronized修饰 HashTable不允许Key为空 2.ArrayList和LinkedList和Ve 阅读全文
posted @ 2017-06-06 12:28 墨.荷 阅读(127) 评论(0) 推荐(0)