国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Java > 正文

java獲取web容器地址的方法

2019-11-26 16:11:23
字體:
來源:轉載
供稿:網友

tomcat本地地址 E:/soft4develop/apache-tomcat-6.0.18

System.getProperty("user.dir")//E:/soft4develop/apache-tomcat-6.0.18/bin
System.getProperty("catalina.home")//E:/soft4develop/apache-tomcat-6.0.18對于jboss同樣適用。其他容器未做測試。

說道這里,正好有朋友在群里頭問了個問題,情景式這樣的

登陸需要用Https來做請求,登陸成功后,剩下的其他請求全部走http.

比如http://www.survivalescaperooms.com/admin/user_manager.apsx

發現這個不需要走Https,就轉發到

//www.survivalescaperooms.com/admin/user_manager.apsx

問題來了

request.getServerPort() 只能獲取https時的port1端口

那如何獲取port2端口呢。

通過上面的方式可以獲取到tomact的路徑,在通過下面xml的xpath來獲取到

tomcat的server.xml中的端口配置拼接,來實現。

獲取tomcat端口的方法

復制代碼 代碼如下:

 public static Integer getTomcatPortFromConfigXml(File serverXml) {
    Integer port;
    try {
       DocumentBuilderFactory domFactory = DocumentBuilderFactory.newInstance();
       domFactory.setNamespaceAware(true); // never forget this!
       DocumentBuilder builder = domFactory.newDocumentBuilder();
       Document doc = builder.parse(serverXml);
       XPathFactory factory = XPathFactory.newInstance();
       XPath xpath = factory.newXPath();
       XPathExpression expr = xpath.compile
         ("/Server/Service[@name='Catalina']/Connector[count(@scheme)=0]/@port[1]");
       String result = (String) expr.evaluate(doc, XPathConstants.STRING);
       port =  result != null && result.length() > 0 ? Integer.valueOf(result) : null;
    } catch (Exception e) {
      port = null;
    }
    return port;
 }

最后附帶下System.ge
復制代碼 代碼如下:

另外:System.getProperty()中的字符串參數如下:

System.getProperty()參數大全
# java.version                                Java Runtime Environment version
# java.vendor                                Java Runtime Environment vendor
# java.vendor.url                           Java vendor URL
# java.home                                Java installation directory
# java.vm.specification.version   Java Virtual Machine specification version
# java.vm.specification.vendor    Java Virtual Machine specification vendor
# java.vm.specification.name      Java Virtual Machine specification name
# java.vm.version                        Java Virtual Machine implementation version
# java.vm.vendor                        Java Virtual Machine implementation vendor
# java.vm.name                        Java Virtual Machine implementation name
# java.specification.version        Java Runtime Environment specification version
# java.specification.vendor         Java Runtime Environment specification vendor
# java.specification.name           Java Runtime Environment specification name
# java.class.version                    Java class format version number
# java.class.path                      Java class path
# java.library.path                 List of paths to search when loading libraries
# java.io.tmpdir                       Default temp file path
# java.compiler                       Name of JIT compiler to use
# java.ext.dirs                       Path of extension directory or directories
# os.name                              Operating system name
# os.arch                                  Operating system architecture
# os.version                       Operating system version
# file.separator                         File separator ("/" on UNIX)
# path.separator                  Path separator (":" on UNIX)
# line.separator                       Line separator ("/n" on UNIX)
# user.name                        User's account name
# user.home                              User's home directory
# user.dir                               User's current working directory


File.getCanonicalPath()和File.getAbsolutePath()大約只是對于new File(".")和new File("..")兩種路徑有所區別。

復制代碼 代碼如下:

# 對于getCanonicalPath()函數,“."就表示當前的文件夾,而”..“則表示當前文件夾的上一級文件夾
# 對于getAbsolutePath()函數,則不管”.”、“..”,返回當前的路徑加上你在new File()時設定的路徑
# 至于getPath()函數,得到的只是你在new File()時設定的路徑

比如當前的路徑為 C:/test :
File directory = new File("abc");
directory.getCanonicalPath(); //得到的是C:/test/abc
directory.getAbsolutePath();    //得到的是C:/test/abc
direcotry.getPath();                    //得到的是abc

File directory = new File(".");
directory.getCanonicalPath(); //得到的是C:/test
directory.getAbsolutePath();    //得到的是C:/test/.
direcotry.getPath();                    //得到的是.

File directory = new File("..");
directory.getCanonicalPath(); //得到的是C:/
directory.getAbsolutePath();    //得到的是C:/test/..
direcotry.getPath();                    //得到的是..

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 乌什县| 河间市| 泸州市| 开远市| 惠东县| 宣汉县| 黄骅市| 军事| 彩票| 毕节市| 平山县| 聂荣县| 涟源市| 漠河县| 铜山县| 沽源县| 甘泉县| 时尚| 永福县| 鹤庆县| 普定县| 搜索| 临海市| 阳山县| 漠河县| 镇康县| 潞西市| 石门县| 卢氏县| 墨玉县| 合水县| 桐柏县| 洪雅县| 清涧县| 延安市| 湖口县| 昌宁县| 晋中市| 铁力市| 长顺县| 会同县|