阿宝 Keep Walking......


JUST DO IT, DO YOUR BEST ! -- 勿在浮沙筑高台

  BlogJava :: 首页 :: 联系 :: 聚合  :: 管理
  49 Posts :: 6 Stories :: 26 Comments :: 0 Trackbacks

02 2009 档案

     摘要: For the purpose of secutiy, sometimes svn server specify another ssh port such as “9999”, rather than the port 22, so it is necessay to assign the port number as well as user name and password on checking in or out. To setup those, please follow the below steps.  阅读全文
posted @ 2009-02-27 18:23 阿宝 阅读(1255) | 评论 (1)  编辑

     摘要: 在输入自己的blog的URL、用户名、密码之后,要求选择服务类型。在blogjava中选择metaweblog API,然后在上传URL上填写:  阅读全文
posted @ 2009-02-26 23:47 阿宝 阅读(212) | 评论 (0)  编辑

     摘要: 在JSF1.2中后,Sun修改了viewhandler,在components直接放入HTML不再需要这个<f:verbatim>了
  阅读全文
posted @ 2009-02-16 18:09 阿宝 阅读(620) | 评论 (0)  编辑

     摘要: Vim 实用技术,第 1 部分: 实用技巧
http://www.ibm.com/developerworks/cn/linux/l-tip-vim1/
Vim 实用技术,第 2 部分: 常用插件
http://www.ibm.com/developerworks/cn/linux/l-tip-vim2/
Vim 实用技术,第 3 部分: 定制 Vim
http://www.ibm.com/developerworks/cn/linux/l-tip-vim3/  阅读全文
posted @ 2009-02-16 16:49 阿宝 阅读(8825) | 评论 (0)  编辑

     摘要: 默认的Vim的配色方案和字体都不是我所喜欢的,可以编辑Vim安装目录的下的_vimrc文件,添加下面的配置属性来修改
colorscheme torte
set gfn=Courier_New:h9:cDEFAULT
set nu!  阅读全文
posted @ 2009-02-15 17:56 阿宝 阅读(247) | 评论 (0)  编辑

     摘要: Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\Edit with Vim]
@="Edit with &Vim"
[HKEY_CLASSES_ROOT\*\shell\Edit with Vim\command]
@="\"D:\Program Files\Vim\vim72\gvim.exe\" -p --remote-tab-silent \"%1\" \"%*\""
  阅读全文
posted @ 2009-02-15 17:35 阿宝 阅读(2354) | 评论 (0)  编辑

     摘要: 1.在/WEB-INF/中寻找faces-config.xml
这是默认的也是最常用的一种配置方式
2.搜索/WEB-INF/lib目录中所有jar包的/META-INF中名为faces-config.xml
3.在web.xml搜索指定参数javax.faces.application.CONFIG_FILES  阅读全文
posted @ 2009-02-15 12:22 阿宝 阅读(906) | 评论 (0)  编辑

     摘要: http://hi.baidu.com/itlab5/blog/item/5f5c14afcc0a70c97dd92a2c.html
http://www.searchfull.net/blog/2007/04/19/1176959336731.html  阅读全文
posted @ 2009-02-11 15:02 阿宝 阅读(95) | 评论 (0)  编辑

     摘要: 今天试了一下Google的Sync,果然不错。而之前拿我的索爱手机M600i测试其他的Sync服务器一直不太稳定,下面是在Sync前的手机需要做的配置(哦,什么? 你不知道这Google Sync到底是干什么用的,简单来说这就是你的远程地址簿,当你下次换手机或者手机丢了的时候,通过和Goolge Sync服务器的同步,你就可以将存在你Google帐户上的通讯录同步到你现在的手机上来,怎么样,挺实用的功能吧。)  阅读全文
posted @ 2009-02-10 22:15 阿宝 阅读(2372) | 评论 (7)  编辑

     摘要: select 'drop table ' || table_name ||'cascade constraints;'||chr(13)||chr(10) from user_tables; --delete tables
select 'drop view ' || view_name||' cascade constraints;'||chr(13)||chr(10) from user_views; --delete views
select 'drop sequence ' || sequence_name||' cascade constraints;'||chr(13)||chr(10) from user_sequences;--delete seqs   阅读全文
posted @ 2009-02-10 12:55 阿宝 阅读(439) | 评论 (0)  编辑

posted @ 2009-02-02 13:31 阿宝 阅读(89) | 评论 (0)  编辑

     摘要: 上个月公司给换了个笔记本,从D610升级到了D630,由于之前一直在D610上使Ubuntu 7.04,自然也想在新的笔记本上装一个Ubuntu,虽然说Linux作为桌面开发平台还存在着种种的问题,但是在不断的发现问题和解决问题中,自己也从中学习到了不少。虽然有些问题真的很让人头疼,可是作为一个免费的系统,你还能要求多少呢? 废话不多说了,那就开始我的Ubuntu之旅吧  阅读全文
posted @ 2009-02-02 13:30 阿宝| 编辑

     摘要: SQLPlus 在连接时通常有三种方式
1. sqlplus / as sysdba
操作系统认证,不需要数据库服务器启动listener,也不需要数据库服务器处于可用状态。比如我们想要启动数据库就可以用这种方式进入
sqlplus,然后通过startup命令来启动。  阅读全文
posted @ 2009-02-02 13:27 阿宝 阅读(1595) | 评论 (0)  编辑

     摘要: 如果Listener没有正确启动,则客户端无法连接数据库服务器。而造成不能启动的原因比较多,比如listener.ora配置文件不对,1521端口被占等等。我所遇到的问题主要就是listener.ora文件配置有些问题。(另外两个比较重要的文件是tnsname.ora和sqlnet.ora ,用于客户端)  阅读全文
posted @ 2009-02-02 12:59 阿宝 阅读(463) | 评论 (0)  编辑