From the course: Oracle Java Foundations

Unlock this course with a free trial

Join today to access over 24,000 courses taught by industry experts.

Cloud deployment: Demo

Cloud deployment: Demo - Java Tutorial

From the course: Oracle Java Foundations

Cloud deployment: Demo

(bright music) - [Instructor] Prepare for cloud deployment. In this module, we'll take a look at how to package and deploy an SE standard edition application to handle web requests. Technically speaking, Java SE applications are not generally deployed to the cloud because they don't normally handle web requests. For that, we use Java EE, Java Enterprise Edition applications. Those are normally deployed to some type of server like Web Logic or Helidon, and then they can handle web requests. But to give you a feel of what your SE application can do if it had the ability to handle web requests, we're going to use the Helidon SE portion which will embed a server into your Java SE application. It'll run in its own Java virtual machine and it'll handle web requests. Now a Java EE server, like for example, Web Logic or Helidon, provides more sophisticated application management and multiple different frameworks for application development. However, we thought this would be a great…

Contents