摘要: Object obj = Ognl.getValue("#{\"1\":\"电子产品\",\"2\":\"桌椅\",\"3\":\"书籍\",\"4\":\"其他\"}", null) ;System.out.println(obj.getClass());Map map = (Map) obj ;System.out.println(map.get("1")); 阅读全文
posted @ 2013-12-12 15:18 行-云 阅读(160) 评论(0) 推荐(0) 编辑
摘要: http://ip:port/工程名/web.xml中配的AxisServlet的url-pattern/service.xml中配置的service名字/方法名(比如:http://192.168.1.29:8080/IMS/services/imsUserWebService/existEName) 阅读全文
posted @ 2013-12-11 11:57 行-云 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 使用${'$'}如需要输出${user.id}则${'$'}{user.id} 阅读全文
posted @ 2013-12-05 15:32 行-云 阅读(736) 评论(0) 推荐(1) 编辑
摘要: 页面js(页面编码为utf-8)var newStr = encodeURI('中文') ; //如果到action里面还是乱码就转两次 encodeURI(encodeURI('中文'))将newStr传到actionactionString str = URLDecoder.decode(newStr, "utf-8") ; 阅读全文
posted @ 2013-11-29 14:56 行-云 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2013-11-29 10:53 行-云 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 这个问题是由于有的样式'yyy'依赖于某些样式'xxx'即某个样式'yyy'的style='xxx样式'的时候,'yyy'在'xxx'的上面,将'xxx'顺序调到'yyy'的上面即可 阅读全文
posted @ 2013-11-29 10:43 行-云 阅读(141) 评论(0) 推荐(0) 编辑
摘要: Thread.currentThread().getContextClassLoader().getResource("文件名")例如要在tomcat启动后改变.properties文件内容就要用此方法获取路径 阅读全文
posted @ 2013-11-29 09:25 行-云 阅读(1866) 评论(0) 推荐(0) 编辑
摘要: 此方法也可用于改变变量名/... 阅读全文
posted @ 2013-11-27 14:48 行-云 阅读(191) 评论(0) 推荐(0) 编辑
摘要: //动态注入的方法/** * 通过BeanDefinition注册bean到spring context,无则加入,有则修改 * @param cxt spring context * @param beanId * @param classPath 类路径 * @param pvs bean属性值 */public void reg(ApplicationContext cxt, String beanId, String classPath, Map pvs){BeanDefinition bdef = new GenericBeanDefinition() ; bdef.setBean. 阅读全文
posted @ 2013-11-25 13:25 行-云 阅读(2321) 评论(0) 推荐(0) 编辑
摘要: 在使用struts标签的时候最好加上theme="simple"不加上的话,在使用clone的时候就会出现标签没有结束符的情况 阅读全文
posted @ 2013-11-20 16:21 行-云 阅读(148) 评论(0) 推荐(0) 编辑