我使用 Ant 作为我们服务器的设置脚本,我们需要获取服务器的完全限定名称。我如何使用 Ant 获得它,或者在 Ant 中是可能的?
完全限定的主机名类似于:xxx.company.com
我使用 Ant 作为我们服务器的设置脚本,我们需要获取服务器的完全限定名称。我如何使用 Ant 获得它,或者在 Ant 中是可能的?
完全限定的主机名类似于:xxx.company.com
<exec executable="hostname" outputproperty="computer.hostname"/>
将在 linux 和 windows 上运行,否则使用 Marc O'Connor 的 groovy 解决方案
此外,nslookup 将在 linux 和 windows 上运行,如果您需要完整主机名,则必须解析 Name: 在nslookup ServerName
输出中的条目,使用:
<groovy>
properties.'hostname' = "hostname".execute().text
//or
properties.'hostname' = InetAddress.getLocalHost().getHostName()
properties.'hostnamefull' = "nslookup ${"hostname".execute().text}".execute().text.find(/Name:\s(.+)/).split(/:\s+/)[1]
</groovy>
<echo>
$${hostname} => ${hostname}
$${hostnamefull} => ${hostnamefull}
</echo>
有一个称为 Ant 任务HostInfo
,您可以使用它来设置包含当前机器的主机名和域的属性。
或者,如果您在 Linux/Unix 上运行,您可以调用以下hostname
命令:
<exec executable="hostname" outputproperty="myhostname">
<arg line="-f"/>
</exec>
然后,完全限定的主机名在${myhostname}
.
编辑:对于完全独立于平台的解决方案,类似这样的自定义任务(未经测试)应该可以完成这项工作:
public class GetHost extends Task
{
private String property;
public void setProperty(String property)
{
this.property = property;
}
@Override
public void execute() throws BuildException
{
if (property == null || property.length() == 0)
{
throw new BuildException("Property name must be specified.");
}
else
{
try
{
String hostName = InetAddress.getLocalHost().getHostName();
getProject().setProperty(property, hostName);
}
catch (IOException ex)
{
throw new BuildException(ex);
}
}
}
}
这可以按如下方式使用:
<GetHost property="myhostname" />
重新散列我为Maven做的答案:-)
使用嵌入式 groovy 脚本执行 Java 主机名查找:
<groovy>
properties["hostname"] = InetAddress.getLocalHost().getHostName()
</groovy>
项目是自我记录的:
$ ant -p
Buildfile: /home/mark/tmp/build.xml
This is a demo project answering the followng stackoverflow question:
https://stackoverflow.com/questions/14653733
First install 3rd party dependencies
ant bootstrap
Then run the build
ant
Expect the following output
print-hostname:
[echo] Hostname: ?????
<project name="demo" default="print-hostname">
<description>
This is a demo project answering the followng stackoverflow question:
https://stackoverflow.com/questions/14653733
First install 3rd party dependencies
ant bootstrap
Then run the build
ant
Expect the following output
print-hostname:
[echo] Hostname: ?????
</description>
<target name="bootstrap" description="Install 3rd party dependencies">
<mkdir dir="${user.home}/.ant/lib"/>
<get dest="${user.home}/.ant/lib/groovy-all.jar" src="http://search.maven.org/remotecontent?filepath=org/codehaus/groovy/groovy-all/2.1.0/groovy-all-2.1.0.jar"/>
</target>
<target name="print-hostname" description="Retrieve and print the hostname">
<taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy"/>
<groovy>
properties["hostname"] = InetAddress.getLocalHost().getHostName()
</groovy>
<echo message="Hostname: ${hostname}"/>
</target>
</project>
另一种方法是编写一个在属性中设置此信息的 javascript scriptdef 。
<scriptdef name="get-hostame" language="javascript">
<attribute name="prefix" /> <![CDATA[
importClass(java.net.InetAddress);
address = InetAddress.getLocalHost();
prefix = attributes.get("prefix");
project.setNewProperty(prefix + ".hostname", address.getHostName());
project.setNewProperty(prefix + ".fqdn", address.getCanonicalHostName());
project.setNewProperty(prefix + ".address", address.getHostAddress());
]]>
</scriptdef>
你可以这样称呼它:
<get-hostame prefix="uwi.host" />
结果如下:
[echoproperties] uwi.host.address=10.666.666.666
[echoproperties] uwi.host.fqdn=myhost.stackoverflow.com
[echoproperties] uwi.host.hostname=myhos
这是基于我在这里找到的一些建议:http: //grokbase.com/t/ant/user/051sygfj9b/any-way-to-get-at-the-machine-name
使用环境
<property name="hostname" value="${env.COMPUTERNAME}"/>
使用内置的javascript
<script language="javascript">//<![CDATA[
project.setProperty("hostname", Packages.java.net.InetAddress.getLocalHost().getHostName());
project.setProperty("hostname-full", Packages.java.net.InetAddress.getLocalHost().getCanonicalHostName());
//]]></script>
<echo message="hostname=${hostname}"/>
<echo message="hostname-full=${hostname-full}"/>