05 2016 档案
hibernate -study
摘要:hibernate.cfg.xml配置 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" 阅读全文
posted @ 2016-05-26 14:17 微笑流氓兔 阅读(98) 评论(0) 推荐(0) 编辑
struts2-study
摘要:web.xml配置 <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-clas 阅读全文
posted @ 2016-05-20 14:47 微笑流氓兔 阅读(124) 评论(0) 推荐(0) 编辑
ActionContext-study
摘要:ActionContext contex=ActionContext.getContext(); Actioncontext是上下文是一个容器,存放着Action这执行时要用到的一些对象, 如params,session,servletContext,本地化(Locale)信息等。 在每次执行时都会 阅读全文
posted @ 2016-05-19 09:44 微笑流氓兔 阅读(87) 评论(0) 推荐(0) 编辑
集合学习
摘要:List集合:ArrayList集合基于动态数组结构,查询优,LinkedList 基于链表结构 数据移动优。是一个有序的队列集合 set集合:HashSet和TreeSet 。是一个无序不重复集合 Map集合:HashMap和TreeMap。是一个KEY-VALUE映射的集合 遍历:Iterato 阅读全文
posted @ 2016-05-17 16:22 微笑流氓兔 阅读(191) 评论(0) 推荐(0) 编辑
SVN安装
摘要:1、下载SVN 2、解压svn 把解压出来的两个文件夹放到myeclipse的dropins下自己创建的SVN文件夹下,完成。 3、查看SVN window - shouw view - other -svn ;选中资源库OK就添加上去了,之后在SVN空白处右键 - 新建-资源库位置-输入RRL就链 阅读全文
posted @ 2016-05-16 09:24 微笑流氓兔 阅读(195) 评论(0) 推荐(0) 编辑
基础学习
摘要:for(1;2;3) 4 执行顺序1,2,4,3;一句话时可以省略{}. switch(xx){case xx:... break};执行完之后别忘break,不然会有case穿透;switch只能探测到int类型的值;没有符合case会执行defalut;case 1: case 2: case 阅读全文
posted @ 2016-05-13 13:49 微笑流氓兔 阅读(169) 评论(0) 推荐(0) 编辑
XStream解析
摘要:xmlstr转化为对象 XStream xstream=new XStream(); xstream.autodetectAnnotations(true); xstream.alias("User",User.class); (User)xstream.fromXML(xmlstr); 对象转化为 阅读全文
posted @ 2016-05-12 17:51 微笑流氓兔 阅读(186) 评论(0) 推荐(0) 编辑
JSON字符串转化为JSON对象
摘要:1、JSONObject.fromObject(jsonstr); 2、JSONArray.fromObject(jsonstr); 阅读全文
posted @ 2016-05-12 16:42 微笑流氓兔 阅读(219) 评论(0) 推荐(1) 编辑
Kill端口
摘要: 阅读全文
posted @ 2016-05-12 15:42 微笑流氓兔 阅读(136) 评论(0) 推荐(0) 编辑