GraalVM 101: Practical Workshop to Get Started with GraalVM Enterprise Edition.
Table of Contents
- Install GraalVM EE
- Creating a simple Spring Boot/Micronaut Bond Princing API
- GraalVM JIT to boost Throughputs
- GraalVM Native Image : Faster,Leaner
- Cloud Native Deployments with GraalVM Native Image
- Java Runtimes: GraalVM + OpenJDK
- Apache benchmark
- hey
- Maven
- upx
- Docker/Podman
Use the following docs/links to install GraalVM Enterprise 22.2+
A Bond is a financial instrument that represent a loan made by an investor to a borrower that pays investor a fixed rate of return over a specific timeframe(Maturity). At the end of the maturity period the Principal amount is paid back to the investor.
In this section, you will have to create a Bond Pricing SpringBoot API that compute the selling price of a bond using the Present Value Model with
PV
is the Selling price/Fair Value to computeC
is a coupon, periodic interest received by the lender.C = Contractual * Face Value of the bond
r
is the market yield to maturityT
represents the number of payment to received/ years( Maturity Term)- More about the formular
You can either build this API with SpringBoot or Micronaut by following the links bellow.