Newer
Older
JenkinsTest / src / main / java / com / example / jenkinstest / resources / TestResource.java
@Sakoda2269 Sakoda2269 24 days ago 267 bytes 変更
package com.example.jenkinstest.resources;

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

@Path("")
@Component
public class TestResource {

    @GET
    public String hello() {
        return "hello";
    }

}