Ondro Mihályi
Ondro Mihályi
Yes, the `MetricsServletContainerInitializer` only binds to the root context if the application is already bound to the root context. If it becomes the default web module after it's deployed, it's...
Hi @jGauravGupta, in case @thehpi would like to create a PR with a fix, can you help him how to know whether the application is the default webmodule?
I assume that all what's needed is to add a hook to the code that sets an app as the default web module and install the MetricsServlet, similarly to how...
Hi @mkarg , I reopened this issue but we'll need to wait for the Jersey 2.36 release before we can upgrade Jersey in Payara Server to fix this. Please notify...
Hi @r-alto , please, can you provide a simple to follow scenario how to reproduce this? A reproducer should ideally follow the SSCCE rules: http://www.sscce.org/. It will greatly help us...
I can reproduce with the sample app here https://github.com/payara/Payara/pull/5422. This app doesn't refer to an environment variable but when I change the annotation in SecuredPage.java to refer to an environment...
The reason for the exception is that the `JobOperator.start()` method creates an instance of the job and persists it within the transaction that is created for running the timer method...
Hi @smillidge , I'm pretty sure it's a bug but I agree that it should be raised at the upstream JBatch RI project, and ideally at the Jakarta Batch project...
It looks like OpenLiberty provides its own JobOperator that suspends the current transaction and commits the changes directly: https://github.com/OpenLiberty/open-liberty/blob/integration/dev/com.ibm.jbatch.container/src/com/ibm/jbatch/container/api/impl/JobOperatorImplSuspendTran.java
The JBatch JobOperator will be nehanced in version 2.1.0 with this PR: https://github.com/WASdev/standards.jsr352.jbatch/pull/77. Although I haven't tested it yet (there's no way to test it with Payara 5 because it's...