Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
Demonstrates a simple Quarkus REST API with a counter using JAX-RS annotations and in-memory state.
import javax.ws.rs.*
import javax.ws.rs.core.MediaType
import javax.enterprise.context.ApplicationScoped
@ApplicationScoped
@Path("/counter")
public class CounterResource {
private int count = 0
@GET
@Produces(MediaType.APPLICATION_JSON)
public int getCount() {
return count
}
@POST
@Path("/increment")
@Produces(MediaType.APPLICATION_JSON)
public int increment() {
return ++count
}
@POST
@Path("/decrement")
@Produces(MediaType.APPLICATION_JSON)
public int decrement() {
return --count
}
@POST
@Path("/reset")
@Produces(MediaType.APPLICATION_JSON)
public int reset() {
count = 0
return count
}
}Quarkus is a Kubernetes-native Java framework designed for building cloud-native, high-performance applications. It emphasizes fast startup times, low memory usage, and developer productivity.
Origin & Creator
Quarkus was created by Red Hat in 2019 to modernize Java development for cloud-native environments.
Industrial Note
Quarkus is ideal for Java projects requiring high-performance, fast-startup, and cloud-native deployment with containerized environments.