Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我能否在运行时确定我的应用程序部署在哪个应用程序服务器上:GlassFish、WebLogic 或 JBoss?
你可以尝试使用
String serverInfo = application.getServerInfo();
在一个 JSP 中。在 Servlet 中,尝试使用
String serverInfo = getServletContext().getServerInfo();