Commit f21d58ad authored by Dave Syer's avatar Dave Syer

Use constructor injection for Jersey sample

parent 9f7bd0cd
......@@ -26,9 +26,13 @@ import org.springframework.stereotype.Component;
@Path("/hello")
public class Endpoint {
@Autowired
private Service service;
@Autowired
public Endpoint(Service service) {
this.service = service;
}
@GET
public String message() {
return "Hello " + this.service.message();
......
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