- 博客(8)
- 资源 (1)
- 收藏
- 关注
原创 在Eclipse中创建Lucene项目
1、下载Lucene代码。GithHub地址:ttps://github.com/apache/lucene-solr这个地址下载到的是Lucene + solr的源码。Lucene主页下载的单独的Lucene_src.zip是不可以导入的。2、必须软件安装Lucene5.5 需要JDK7以上、ANT1.8.1以上、ivy。如果网络需要代理的,需要执行set ANT_O
2016-03-31 17:25:09
2775
原创 ant编译发生compiler message file broken错误
error: compiler message file broken: key=compiler.err.sun.io.MalformedInputException arguments=null, null, null, null, null, null, null
2014-05-06 16:51:18
1269
原创 20130417
_tmain与main,winMain,wmain1. main():WINDOWS的控制台程序(32BIT)或DOS程序(16BIT)入口函数 WinMain():是WINDOWS的GUI程序入口函数2. _tmain和_tWinMain的定义在#ifdef _UNICODE#define _tmain wmain#define _tWinMain
2013-04-17 19:06:29
484
转载 Linux Resource Limit
一、功能描述在linux系统中,Resouce Limit指在一个进程的执行过程中,它所能得到的资源的限制,比如进程的core file的最大值,虚拟内存的最大值等。其有两个最重要的概念:soft limit 和 hard limit。soft limit是指内核所能支持的资源上限。比如对于RLIMIT_NOFILE(一个进程能打开的最大文件数,内核默认是1024),soft
2013-04-05 14:39:43
1160
转载 GlassFish中Domain、DAS、 instance、cluster、node agent的含义
Server Instance 一个server instance运行在一个单独的JVM中,instance可分为两种:standalong和cluster。DAS就是一个standalong的 instance,可以完全不依赖cluster而存在。对于cluster的instance,可以对应到weblogic中的managed server,我们也称作traffic serv
2012-05-29 16:28:18
1365
翻译 GLassFish v4 新特性介绍
GFv4 总目标GlassFish 4.0 将实现 Java EE 7 特性, 致力于 Java EE 7 参考实现。此版本主要要实现以下2个特性: 对虚拟化的支持 PaaS的实现PaaSPaaS是Platform-as-a-Service的缩写,意思是平台即服务。 把服务器平台作为一种服务提供的商业模式。云计算时代相应的服务器平台或者开发环境作为服务进行提供就称为PaaS
2012-03-05 16:14:09
901
原创 java.lang.IllegalMonitorStateException
代码:public void push() { while (production > 1) { System.out.println("请等待消费者取走." + production); try { synchronized (this) { wait(); } } catch (InterruptedException e) {
2011-12-21 13:57:57
270
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人