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 应用程序,我希望有几种部署模式。IE:开发、生产、demo1等。我该如何指定这些配置?
谢谢。
您可以在 Glassfish 中配置一些 JVM 选项,然后在您的应用程序中检索它们。
例子:
在 Glassfish JVM 选项中:
-Dapp.env=生产
在您的应用程序中:
System.getProperty("app.env");