Mon premier commit

This commit is contained in:
DahoudG
2024-08-30 00:19:32 +00:00
commit 4ccf1b0349
26 changed files with 2122 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package com.lions.dev;
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";
}
}