将java ee应用程序部署到8080以外的另一个端口
只是想知道我是否可以在任何应用程序服务器中部署我的 java ee 应用程序,例如:glassfish,并且用户无需输入端口号即可访问,例如:http://abc.com (我当前的应用程序网址将为http://abc.com:8080)
据我所知,我可能需要另一个网络服务器,例如:Apache 使用 mod_proxy 模块将请求重定向到应用程序服务器,以便我实现这一目标,对吧?
请建议...
Just wonder if i can deploy my java ee application in any application server for eg: glassfish, and user are able to access without typing the port number, for eg:http://abc.com
(my current application url will be http://abc.com:8080)
as from my knowledge, i might need another web server like for eg:Apache to redirect request to application server using mod_proxy module in order for me to achieve that, right?
kindly advise...
将 Apache 设置为代理从端口 80 到在端口 8080 上运行的应用程序/Web 服务器的请求是消除 URL 中对端口号的需要的一种方法。但这肯定不是唯一的方法。您应该能够将任何 J2EE 应用程序服务器或 Web 服务器配置为在端口 80 而不是 8080(J2EE 应用程序/Web 服务器中的常见默认值)上运行。配置编辑的详细信息是特定于应用程序/Web 服务器的。您可能需要系统上的 root 权限才能绑定到端口 80。
Setting up Apache to proxy requests from port 80 to your app/web server running on port 8080 is one way to eliminate the need for port numbers in your URLs. But it's certainly not the only way. You should be able to configure any J2EE application server or web server to run on port 80 instead of 8080 (a common default in J2EE app/web servers). The details of the configuration editing are app/web server specific. You may need root privileges on your system to bind to port 80.