创建属性 class
Creating a property class
下面是我的url参数:
private final static String REST_HOST = "localhost address";
private final static String REST_CONTEXT = "/newwebservices/rest/";
如果我提供本地主机地址,它将只在我的系统中工作。但我需要在不同的系统中运行。
您可以使用:
InetAddress.getLocalHost().getHostName()
在此处查看文档:
http://docs.oracle.com/javase/7/docs/api/java/net/InetAddress.html
下面是我的url参数:
private final static String REST_HOST = "localhost address";
private final static String REST_CONTEXT = "/newwebservices/rest/";
如果我提供本地主机地址,它将只在我的系统中工作。但我需要在不同的系统中运行。
您可以使用:
InetAddress.getLocalHost().getHostName()
在此处查看文档:
http://docs.oracle.com/javase/7/docs/api/java/net/InetAddress.html