2012-11-20 67 views
-2

的web.xml文件中的安全約束端口設置出於某種原因,我想指定的端口設置在這裏這麼 可以請你告訴我,有沒有可用的任何標記提端口這裏如何指定Java EE應用程序

<security-constraint> 
    <web-resource-collection> 
     <web-resource-name>securedapp</web-resource-name> 
     <url-pattern>/*</url-pattern> 
    </web-resource-collection> 
    <user-data-constraint> 
     <transport-guarantee>CONFIDENTIAL</transport-guarantee> 
    </user-data-constraint> 
</security-constraint> 
+0

@Hussain您能否給我建議回答呢? – JMoh

+1

題外話;屬於[sf] –

回答

0

我覺得沒有機會。

將偵聽器添加到端口是容器的責任。容器配置可以改變,然後你的web應用程序應該做什麼?例如。如果容器將端口從8443更改爲9443,則應用程序將被破壞。

因此,在您的Web應用程序中無法定義端口(它超出了Web應用程序的範圍)。

順便說一句你爲什麼要修復你的Web應用程序中的端口?

+0

謝謝你Uwe Plonus的回答。 我需要這個,因爲亞馬遜彈性負載平衡器的亞馬遜工作,我已經問這裏&沒有找到任何適當的解決方案 – JMoh

+0

http://stackoverflow.com/questions/13226254/how-to-redirect-http-request-to- HTTPS-ON-Java的應用程序安裝上,亞馬遜-EL – JMoh