All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.quarkus.postgres.issue253 Maven / Gradle / Ivy

Go to download

This sample project was created by Alexei Bratuhin(@coiouhkc github user) as a reproducer for issue #253

There is a newer version: 1.37.1
Show newest version
package com.github.quarkus.postgres;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

@Path("/hello")
public class issue253 {

    @GET
    @Produces(MediaType.TEXT_PLAIN)
    public String hello() {
        return "Hello RESTEasy";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy