Skip to content

Tag: payara

JAX-RS and RegEx @Paths with spaces

Spaces in URIs are allowed if they’re encoded, as discussed here. JAX-RS (Jersey on Payara) doesn’t seem to allow spaces defined in the path regex pattern. The above regex should match the encoded ABC%20XYZ, but it doesn’t. Request: Internally, Payara throws a 404: Removing %20 (space) succe…

Upload file to payara5 docroot

I’ve installed payara5 on ubuntu and going to upload file to docroot.i need to know if there is such a capability in payara Answer Payara doesn’t support uploading individual files. It’s an application server and supports only uploading whole application packages. But you can upload files to…