io.quarkus.it.consul.config.GreetingResource Maven / Gradle / Ivy
package io.quarkus.it.consul.config;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import org.eclipse.microprofile.config.inject.ConfigProperty;
@Path("/greeting")
public class GreetingResource {
@ConfigProperty(name = "greeting.message")
String message;
@GET
public String greet() {
return message;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy