package com.example.jerseyexercise.resources; import jakarta.ws.rs.*; import jakarta.ws.rs.core.MediaType; import org.springframework.stereotype.Component; import java.util.ArrayList; @Path("yuna") @Component public class yuna { String name = "noname"; ArrayList<String> tweetList = new ArrayList<>(); @GET public String getHelloWorld(){ return "Hello world!"; } @GET @Path("/name") public String getName(){ return name; } @PUT @Path("/name") public void setName(@FormParam("name") String newName){ name = newName; } @POST @Path("/tweets") @Consumes(MediaType.APPLICATION_FORM_URLENCODED) public void tweet(@FormParam("tweet") String tweet){ tweetList.add(tweet); } @GET @Path("/tweets") @Produces(MediaType.APPLICATION_JSON) public ArrayList<String> getTweets(){ return tweetList; } }