博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 7 8 9 10 11 12 下一页

2011年11月1日

摘要: @EJB (beanName = "CAProxySubMessageHandlerImpl")private CAProxyMessageHandler subscriptionHandler;packagekarl.common.ejb;importkarl.event.NotificationMessage;publicinterfaceCAProxyMessageHandler{publicvoidprocessMessage(NotificationMessagemsg)throwsException;}packagekarl.message;importjava 阅读全文

posted @ 2011-11-01 16:33 钟悍 阅读(315) 评论(0) 推荐(0) 编辑

摘要: #include<iostream>#include<string>using namespace std;class A{public: virtual void fun1()=0; //纯虚函数 virtual void fun1(){cout<<"A::fun1"<<endl;} //虚函数 void fun2(){cout<<"A::fun2"<<endl;} //函数};class B:public A{public: void fun0(){cout<<&qu 阅读全文

posted @ 2011-11-01 16:19 钟悍 阅读(1449) 评论(2) 推荐(0) 编辑

2011年7月21日

摘要: #include<iostream>#include<string>usingnamespacestd;voidreferenceTest(int&a,int&b){a=4;b=5;}voidpointerTest(string*a,string*b){stringkk="abc";a=&kk;*b="5";}intmain(){intx=0,y=0;referenceTest(x,y);cout<<"x="<<x<<",y="&l 阅读全文

posted @ 2011-07-21 15:57 钟悍 阅读(546) 评论(0) 推荐(0) 编辑

2011年6月14日

摘要: 原博文地址【http://sinckyzhang.blog.sohu.com/149067215.html】 一切J2EE应用都是基于JVM的,那么对于JVM的设置和监控,成为J2EE应用程序性能分析和性能优化的必然手段。今天Sincky和大家交流该话题。这里以Tomcat环境为例,其它WEB服务器如Jboss、Weblogic、Websphere完全一致。【认识JVM】 首先我们来看一张图,这是目前JDK1.6版本自带的JVM性能监控工具VisualVM的一个插件VisualGC的显示情况。让我们先来了解JVM的内存堆Heap管理模式,要调整JVM,自然要知道它的内部结构和运作,此乃“知己知 阅读全文

posted @ 2011-06-14 17:12 钟悍 阅读(4074) 评论(0) 推荐(2) 编辑

2011年5月10日

摘要: net use \\ip\ipc$ " " /user:" " 建立IPC空链接net use \\ip\ipc$ "密码" /user:"用户名" 建立IPC非空链接net use h: \\ip\c$ "密码" /user:"用户名" 直接登陆后映射对方C:到本地为H:net use h: \\ip\c$ 登陆后映射对方C:到本地为H:net use \\ip\ipc$ /del 删除IPC链接net use h: /del 删除映射对方到本地的为H:的映射net use 阅读全文

posted @ 2011-05-10 16:55 钟悍 阅读(186) 评论(0) 推荐(0) 编辑

2010年12月17日

摘要: #LoadModule auth_basic_module modules/mod_auth_basic.so 保证这个被注释掉LoadModule auth_digest_module modules/mod_auth_digest.so 保证这个被打开。Location /aa/ AuthType Digest AuthName "Access Must Login" AuthDigestDomain /aa/ http:127.0.0.1/aa/ AuthDigestProvider file AuthUserFile /usr/apache2/passwd/etc/admin.us 阅读全文

posted @ 2010-12-17 16:58 钟悍 阅读(544) 评论(0) 推荐(0) 编辑

2009年12月27日

摘要: lucene总结公司项目:portal中期刊文章内容作为大字段存储在Oracle中,首页有一个搜索功能:要求将所有包括搜索字段的文章的标题列出来(文章的内容存储在Oracle的CLOB字段中),也就是要用Lucene实现对数据库的大字段进行索引(索引通过计划任务定时建立索引)和搜索。。。 ==================定时建立索引文件:=============== Main方法: Java... 阅读全文

posted @ 2009-12-27 22:33 钟悍 阅读(293) 评论(0) 推荐(0) 编辑

2009年10月8日

摘要: "China is not on the Internet, it's basically an intranet. Everything is banned by the Great Firewall," says Sherman So, co-author of "Red Wired: China's Internet Revolution." Sherman So, author of "... 阅读全文

posted @ 2009-10-08 12:32 钟悍 阅读(234) 评论(0) 推荐(0) 编辑

2009年4月30日

摘要: Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->publicclassArrayOrderBy{ publicstaticvoidmain(String[]args){ intarray[][]=... 阅读全文

posted @ 2009-04-30 15:44 钟悍 阅读(1506) 评论(0) 推荐(0) 编辑

摘要: Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->publicclassjinzita{ publicstaticvoidmain(String[]args){ for(inti=1;i... 阅读全文

posted @ 2009-04-30 10:51 钟悍 阅读(397) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 下一页