这几天在看Cassandra的源代码,Cassandra是通过org.apache.cassandra.service.CassandraDaemon来启动的。在-D的参数中(storage-config)指定了的Cassandra配置文件storage-conf.xml的路径。系统通过下面的code来获取值:
Java代码 configFileName_ = System.getProperty("storage-config") + File.separator + "storage-conf.xml"; configFileName_ = System.getProperty("storage-config") + File.separator + "storage-conf.xml";
而我在eclipse中直接运行CassandraDaemon时,怎么来设置storage-config参数呢?请看下图:
在VM arguments:中直接录入-Dstorage-config=bin\\conf就可以了。如果是下面的code
Java代码 System.getenv("storage-config") System.getenv("storage-config")则需要在Environment Tab项中设置。
public static final String EXIF_TOOL_PATH = System.getProperty( "exiftool.path", "exiftool");
转载自:http://swingboat.iteye.com/blog/518303
转载于:https://www.cnblogs.com/wuhenke/archive/2011/11/21/2257115.html
相关资源:JAVA上百实例源码以及开源项目源代码