Skip to content

Commit

Permalink
Fix broken link and explicitly state MP uses Helidon WebServer (#8043)
Browse files Browse the repository at this point in the history
  • Loading branch information
barchetta authored Nov 20, 2023
1 parent aeeb6af commit cfaeb30
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/about/doc_overview.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ Use these hands-on development tutorials to learn how to generate a small "Hello
xref:{rootdir}/mp/guides/mp-tutorial.adoc[Helidon MP Tutorial]
xref:{rootdir}/mp/guides/mp-tutorial.adoc[Helidon SE Tutorial]
// We do not have an SE application tutorial. So for now point at quickstart.
xref:{rootdir}/se/guides/quickstart.adoc[Helidon SE Quickstart]
--
Expand Down
6 changes: 6 additions & 0 deletions docs/about/introduction.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ Helidon is cloud-native ready. It provides fast start-up time and has low memory
Helidon fully supports GraalVM native image allowing you to build a native executable from your Java application.
Helidon applications are stand-alone Java applications running in their own JVM and powered by the Helidon WebServer.
== Helidon Flavors
Helidon comes in two flavors: *Helidon SE* and *Helidon MP*. Think about these flavors as frameworks providing similar functionality but offering different developer experiences.
Expand Down Expand Up @@ -90,6 +92,10 @@ public class HelloWorld {
}
----
Even though Helidon MP supports Jakarta EE APIs it does not require
an application server. Helidon MP applications are stand-alone Java applications running
in their own JVM powered by Helidon WebServer.
=== What flavor shall I use?
Use Helidon SE if
Expand Down
5 changes: 5 additions & 0 deletions docs/mp/introduction.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ include::{rootdir}/includes/mp.adoc[]
Helidon MP is an Eclipse MicroProfile {version-lib-microprofile-api} runtime that allows the Jakarta EE community to run microservices in a portable way. It is designed for ease of use and provides Spring Boot like development experience with heavy usage of dependency injection and annotations.
Even though Helidon MP supports Jakarta EE APIs it does not require
an application server. Helidon MP applications are stand-alone Java applications running
in their own JVM powered by Helidon WebServer. So you get all the benefits of a low
overhead server built on Java virtual threads.
== Supported Jakarta EE Specifications
|===
Expand Down

0 comments on commit cfaeb30

Please sign in to comment.