Skip to content

Instantly share code, notes, and snippets.

@AdamBien
Last active June 6, 2019 19:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AdamBien/994d66074ce6a93a967e0720b714de2f to your computer and use it in GitHub Desktop.
Save AdamBien/994d66074ce6a93a967e0720b714de2f to your computer and use it in GitHub Desktop.
63rdAirhacksQ&A.md

Ask questions and see you at June, 6th, 6.PM. CET: http://www.ustream.tv/channel/adambien

Also checkout recent episode:

62nd airhacks.tv

Please keep the questions Java EE-stic. Means: as short and as concise as only possible. Feel free to ask several, shorter questions.

@smajl1
Copy link

smajl1 commented Jun 2, 2019

Hi Adam,

I'm currently learning javaee, i wanted to know what really is JMS, why is used for and should you use it?
What about Kafka?
Are these APIs used in microservices?

Thank you

@tmsanchez
Copy link

Hi Adam, thanks for sharing your knowledge.

I just saw your article "Asynchronous JAX-RS: Timeout Configuration and Handling" but I have a question, what about when we need to just return Http 200 just to indicate that we have received the request but we need to call another process in back ground? something like this:

@path("ping")
public class PingResource {

@GET
public Response ping(String someParameter) {
    
	// no need to wait for the result
	callAnAsyncProcessThatMayBeCanTakeaWhile(someParameter);
	
    return Response.ok("Thanks Duke I got it, will inform you").build();;
}

}

@t-shaguy
Copy link

t-shaguy commented Jun 6, 2019

Hello Adam,

Thank you for the good work.

Please, which is the way to go in your opinion, between Quarkus, MicroNaut and Meecrowave (this could include any other promising pro serverless microservice framework like netty?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment