@@ -31,14 +31,14 @@ Learn how to develop a Java application on Open Liberty with Maven and Docker.
3131
3232== What you'll learn
3333
34- You will learn how to run and update a simple REST microservice on an Open Liberty server .
34+ You will learn how to run and update a simple REST microservice on Open Liberty.
3535You will use Maven throughout the guide to build and deploy the microservice as well as
36- to interact with the running server instance.
36+ to interact with the running Liberty instance.
3737
38- Open Liberty is an application server designed for the cloud. It's small, lightweight,
38+ Open Liberty is an open application framework designed for the cloud. It's small, lightweight,
3939and designed with modern cloud-native application development in mind. It supports the
4040full MicroProfile and Jakarta EE APIs and is composable, meaning that you can use only the
41- features that you need, keeping the server lightweight, which is great for microservices.
41+ features that you need, keeping everything lightweight, which is great for microservices.
4242It also deploys to every major cloud platform, including Docker, Kubernetes, and Cloud
4343Foundry.
4444
@@ -47,9 +47,9 @@ Using Maven, you will build a simple microservice, called `system`, that collect
4747system properties from your laptop and displays them on an endpoint that you can access
4848in your web browser.
4949
50- You'll also explore how to package your application
51- with the server runtime so that it can be deployed anywhere in one go. You will then make server configuration and code changes and see how
52- they are picked up by a running server .
50+ You'll also explore how to package your application with Open Liberty
51+ so that it can be deployed anywhere in one go. You will then make Liberty configuration and code changes and see how
52+ they are immediately picked up by a running instance .
5353
5454Finally, you will package the application along with the server configuration into a Docker
5555image and run that image as a container.
0 commit comments