mirror of
https://github.com/ysoftdevs/oauth-playground-server.git
synced 2026-01-16 00:34:13 +01:00
17 lines
326 B
Java
17 lines
326 B
Java
package com.ysoft.geecon;
|
|
|
|
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 from RESTEasy Reactive";
|
|
}
|
|
}
|