Commit 0235a23a by Patryk Czarnik

TimeResource - pierwsza wersja

parent 8e47d6d0
package rest;
import java.time.LocalDateTime;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
@Path("/time")
public class TimeResource {
@GET
public String getDateTime() {
return LocalDateTime.now().toString();
}
@GET
@Path("/second")
public int getSecond() {
return LocalDateTime.now().getSecond();
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment