JPA-inheritance/src/main/java/dev/hinterdorfer/ExampleResource.java
Jonas Hinterdorfer 0c0b9c9d90 init
2025-12-01 11:43:19 +01:00

17 lines
320 B
Java

package dev.hinterdorfer;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;
@Path("/hello")
public class ExampleResource {
@GET
@Produces(MediaType.TEXT_PLAIN)
public String hello() {
return "Hello from Quarkus REST";
}
}