上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页
摘要: 一般大家都知道ArrayList和LinkedList的大致区别:1.ArrayList是实现了基于动态数组的数据结构,LinkedList基于链表的数据结构。2.对于随机访问get和set,ArrayList觉得优于LinkedList,因为LinkedList要移动指针。3.对于新增和删除操作a 阅读全文
posted @ 2016-09-12 13:44 涤新云 阅读(351) 评论(0) 推荐(0) 编辑
摘要: Collection├List│├LinkedList│├ArrayList│└Vector│ └Stack└SetMap├Hashtable├HashMap└WeakHashMapCollection接口 Collection是最基本的集合接口,一个Collection代表一组Object,即Co 阅读全文
posted @ 2016-09-12 13:34 涤新云 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 今天上午刚刚弄明白了在navicat for mysql上如何设置外键,现在分享出来,希望能够对大家有帮助。 先介绍一下基本情况。现在有两个表一张是teacher表一张是dept表,现在我想把teacher表中的dept属性设置为外键,关联dept表中的code属性。具体情况如图;好了,基本情况介绍 阅读全文
posted @ 2016-09-12 11:01 涤新云 阅读(19233) 评论(0) 推荐(2) 编辑
摘要: 【自己的操作】 (1)windows -> Preferences -> maven 的settings.xml文件中.m2的位置已经失效,更改正确后尝试 (2)pom.xml还有下面错误 把pom.xml中报错的注释后再次尝试启动 (3)缺少jar包 无法启动 【参考】 在用Eclipse IDE 阅读全文
posted @ 2016-09-09 16:33 涤新云 阅读(928) 评论(0) 推荐(0) 编辑
摘要: 【自己项目代码】 @Query("select bean from User bean where bean.org.id=?1 and bean.group.id=?2") public List<User> findByOrgIdAndGroupId(int orgId,int groupId) 阅读全文
posted @ 2016-09-09 15:40 涤新云 阅读(51556) 评论(1) 推荐(1) 编辑
摘要: 【参考:http://blog.csdn.net/fangzhangsc2006/article/details/8687371】 在采用FreeMarker做前台视图模板的情况下,我们可以通过<#include>标签和自定义宏来解决很多重复性工作。 一个简单的FreeMarker宏: [html] 阅读全文
posted @ 2016-09-09 14:48 涤新云 阅读(575) 评论(0) 推荐(0) 编辑
摘要: SpringMVC和Freemarker整合,带自定义标签的使用方法。 【参考来源:http://www.360doc.com/content/14/1225/14/1007797_435663342.shtml】 SpringMVC现在是比较热门的一种框架了,使用起来感觉还是很不错的,现在我分享一 阅读全文
posted @ 2016-09-09 12:03 涤新云 阅读(2098) 评论(0) 推荐(0) 编辑
摘要: 【转载来源:http://zwllxs.iteye.com/blog/2036826】 java代码如下: Java代码 import freemarker.core.Environment; import freemarker.template.ObjectWrapper; import free 阅读全文
posted @ 2016-09-09 11:37 涤新云 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 网站:http://www.htmleaf.com/jQuery/Form/201502131372.html 阅读全文
posted @ 2016-09-08 17:59 涤新云 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 【欠缺较多 待完善】 【web.xml】 <servlet> <servlet-name>captchaServlet</servlet-name> <servlet-class>com.jspxcms.common.captcha.CaptchaServlet</servlet-class> </ 阅读全文
posted @ 2016-09-08 17:55 涤新云 阅读(209) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页