com.github.quarkus.postgres.issue253 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-postgres-sample Show documentation
Show all versions of quarkus-postgres-sample Show documentation
This sample project was created by Alexei Bratuhin(@coiouhkc github user) as a reproducer for issue #253
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