How to set up X-POWERED-BY in weblogic.xml?

最后都变了- 提交于 2019-12-02 01:27:23

The first thing you should try is editing your domain setting through the admin console:

<domain name> -> Configuration -> Web Applications

Change the X-Powered-By Header: drop down to whatever setting you need.


For a specific application, like a servlet, you can also call this method:

HttpServletResponse setHeader()

If you need to remove it via your web.xml file, you can try:

 <context-param>
   <param-name>com.sun.faces.sendPoweredByHeader</param-name>
   <param-value>false</param-value>
 </context-param>

If you want to set it using WLST try:

connect(username, password, host_info)
edit()
cd("/WebAppContainer/" + domainName)
startEdit()

# set to NONE, SHORT, MEDIUM, or FULL
cmo.setXPoweredByHeaderLevel("NONE")

activate()
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!