Newer
Older
JerseyExercise / src / main / java / com / example / jerseyexercise / resources / HelloWorldRest.java
package com.example.jerseyexercise.resources;

import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;
import org.springframework.stereotype.Component;

@Path("/helloworld")
@Component
public class HelloWorldRest {
    @GET
    @Produces(MediaType.TEXT_PLAIN)
    public String getHelloWorld() {
        return "Hello World!!";
    }
}