To provide special debug information I want to know if the glassfish server is running in debug mode. Is it possible to check the running mode programmatically?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
GlassFish Server offers a REST API for management and monitoring. You can connect to the DAS and parse the jvm options:
http://localhost:4848/management/domain/list-jvm-options.html
or:
http://localhost:4848/management/domain/list-jvm-options.json
or:
http://localhost:4848/management/domain/list-jvm-options.xml
Hope this helps!