摘要: 原文:http://blog.csdn.net/ckw1988/article/details/3560747在MyEclipse中使用自动部署struts等框架时,难免会遇到输入参数有错或是没有设定好时一不小心按下finish的情况。而此时这步操作又不能直接在edit菜单里撤销。今天我也遇到了这样的情况,通过群里的好心人的帮助终于解决了这个问题。这里把解决方法拿出来同大家分享。关键的步骤是两个,一是把struts-config.xml文件删除,二是修改.project文件。第一步无需赘述,在左侧的导航栏里找到文件delete即可,相信学到了部署struts的各位都能做到。删除config文件 阅读全文
posted @ 2013-03-18 17:16 歌颂者 阅读(3927) 评论(0) 推荐(1) 编辑
摘要: I'm Susan Clark with the Special English program WORDS AND THEIR STORIES.我是苏珊.克拉克,特别英文节目“词语和他们的故事”的主持人。Young Mister Smith had an idea for his employer. It was an idea for saving money for the company by increasing prices. At the same time, Smith suggested that the company sell goods of less valu 阅读全文
posted @ 2013-03-18 15:26 歌颂者 阅读(408) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://www.aqee.net/seven-javascript-things-i-wish-i-knew-much-earlier-in-my-career/我写JavaScript代码已经很久了,都记不起是什么年代开始的了。对于JavaScript这种语言近几年所取得的成就,我感到非常的兴奋;我很幸运也是这些成就的获益者。我写了不少的文章,章节,还有一本专门讨论它的书,然而,我现在依然能发现一些关于这种语言的新知识。下面的描述的就是过去让我不由得发出“啊!”的感叹的编程技巧,这些技巧你应该现在就试试,而不是等着未来的某个时候偶然的发现它们。简洁写法JavaScript里我 阅读全文
posted @ 2013-03-18 14:21 歌颂者 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 1:创建user1表: create table user1( id number, name varchar(20));2:创建sequence(user1_seq): create sequence user1_seq minvalue 1 maxvalue 999999 start with 1 increment by 1 cache 20;3:创建触发器: create or replace trigger user1_tig before insert on user1 for each row begin select to_char(user1_se... 阅读全文
posted @ 2013-03-18 11:52 歌颂者 阅读(3824) 评论(0) 推荐(0) 编辑