Assessments
Using the _________ object, various verticles can be deployed, which talk to each other, receive an external request, and process and store data as any other Java application, thus forming a system of microservices.
Which of the following is advantage of container-less deployment?
Each JAR file requires the JVM of a certain version or higher, which may force you to bring up a new physical or virtual machine just for this reason, to deploy one particular JAR file
In the case of an environment you do not control, your code might be deployed with a right version of JVM, which could lead to unpredictable results
Processes in the same JVM compete for resources, which are especially hard to manage in the case of the environments shared by different teams or different companies
It has a small footprint since it does not include anything else beyond the application itself or a group of microservices
State whether True or False: One way to support a transaction across several microservices...