Skip to content

Instantly share code, notes, and snippets.

@ivargrimstad
Last active September 4, 2017 20:02
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ivargrimstad/34bfe4b5368a35d30007 to your computer and use it in GitHub Desktop.
Save ivargrimstad/34bfe4b5368a35d30007 to your computer and use it in GitHub Desktop.
Microservices in Java - Snoop example
@EnableSnoopClient(serviceName = "hello")
@ApplicationPath("/")
public class ApplicationConfig extends Application {
@Override
public Set<Class<?>> getClasses() {
Set<Class<?>> resources = new HashSet<>();
resources.add(HelloResource.class);
return resources;
}
}
@Path("hello")
public class HelloResource {
@GET
public Response greet() {
return Response.ok("Hello World").build();
}
}
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-web-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>eu.agilejava</groupId>
<artifactId>snoop</artifactId>
<version>${snoop.version}</version>
</dependency>
</dependencies>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment