This commit is contained in:
2025-06-05 20:00:56 +02:00
commit e3dbba4c38
60 changed files with 2469 additions and 0 deletions

View File

@ -0,0 +1,16 @@
package edu.hsog;
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 GreetingResource {
@GET
@Produces(MediaType.TEXT_PLAIN)
public String hello() {
return "Hello RESTEasy";
}
}