Show a message, when an application is deploying to JBoss

前端 未结 1 1663
别跟我提以往
别跟我提以往 2021-01-26 06:05

How can I show a message to alert users, when I deploy an application over JBoss AS 7.1.1?

Technologies that I am using:

  • Shiro 1.2.3
  • Mojarra 2.1.7
相关标签:
1条回答
  • 2021-01-26 06:53

    Put a barebones webserver in front of JBoss AS, acting as a proxy. Usually, Apache HTTPD is being used for this (you know, that server which PHP folks overgeneralize as "Apache"). Then, configure that maintenance screen as its HTTP 404/503 error page.

    The serveradmin should know how to do this. This is at least not JSF (nor programming) related. Such an Apache HTTPD thing has more benefits, by the way, such as more powerful caching and URL rewriting as compared to JBoss AS (we're also using it at ZEEF, in front of WildFly).

    0 讨论(0)
提交回复
热议问题