Questions tagged [payara-micro]

Payara-Micro is a lightweight build of Payara that builds on GlassFish embedded.

Payara Micro is built to be a microservices platform. It is built in the same way as GlassFish embedded, with extra APIs such as JCache.

111 questions
0
votes
1 answer

Payara-Micro Embedded with Java EE

I have a Java EE application (with maven) which currently is packaged into a .war file. What I want to do now is execute this project with a Payara Micro Embedded server. This is done like this: public static void main(String[] args) { …
0
votes
1 answer

Custom resources equivalent to jetty JNDI resource

I have a web application which is until now deployed to a jetty server but now in order to use other JavaEE services I'm shifting to Payara (Glassfish) container. However I can't find how to provide additional JNDI resources as configuration to…
mohamnag
  • 2,709
  • 5
  • 27
  • 40
0
votes
1 answer

How to set log level for Payara Micro

I have a project where I need to run javaee7 microservice with payara micro. For this reason, I build a payara uber jar with maven, so I can just run it as java -jar MicroService.jar (http://blog.payara.fish/creating-uber-jar-with-payara-micro…
G-M
  • 296
  • 1
  • 6
  • 15
0
votes
1 answer

Setting empty Payara Micro Context Root

I am starting a war-packaged Java EE project with payara micro from command line: java -jar payara-micro.jar --deploy target/application.war Then I am able to start the app with http://localhost:8080/application But is there an option to deploy to…
Alex Andersen
  • 127
  • 1
  • 1
  • 14
0
votes
2 answers

How to make requests to Payara Micro using API?

I am trying to complete a test case that deploys a war and makes some REST requests. I want to use Payara Micro JAVA API and I've had a good start with setting up a boostrap bootStrap = PayaraMicro.getInstance().setHttpPort(6060).bootStrap(); ...…
Greg
  • 43
  • 7
0
votes
1 answer

The way to make Payara micro wait to respond to the HTTP request for finishing war file deployment

I'm trying to use Payara micro server to host my Java EE application. Payara micro server is started with following command: java -jar payara-micro-4.1.1.161.1.jar --deploy app.war payara-micro-4.1.1.161.1.jar was downloaded from download page.…
Nobuoka Yu
  • 11
  • 5
1 2 3 4 5 6 7
8