Quarkus 内部使用哪个应用服务器?
Which Application Server is used by Quarkus Internally?
像 Spring Boot 使用 Apache Tomcat、Undertow 和 Jetty,我也参与过相同的任务。所以只是尝试映射理解。
Quarkus 使用什么应用服务器?
I have created an application in server and found Jboss libaries, Arjuna Libraries for transaction
which is used by Jboss servers or wildfly servers. But i am not sure whether it is based on Jboss.
谁能解释一下?
简而言之,Quarkus 可以看成是自己的应用服务器。但是,它由许多已经存在了一段时间的开源库组成,例如:
- 用于 JAX-RS 的 RESTEasy
- Servlet/Websocket 引擎的低潮
- 网络IO层的Netty
- JPA 休眠
可以在 Quarkus Starter 网站上找到完整的扩展集。
像 Spring Boot 使用 Apache Tomcat、Undertow 和 Jetty,我也参与过相同的任务。所以只是尝试映射理解。
Quarkus 使用什么应用服务器?
I have created an application in server and found Jboss libaries, Arjuna Libraries for transaction
which is used by Jboss servers or wildfly servers. But i am not sure whether it is based on Jboss.
谁能解释一下?
简而言之,Quarkus 可以看成是自己的应用服务器。但是,它由许多已经存在了一段时间的开源库组成,例如:
- 用于 JAX-RS 的 RESTEasy
- Servlet/Websocket 引擎的低潮
- 网络IO层的Netty
- JPA 休眠
可以在 Quarkus Starter 网站上找到完整的扩展集。