Use constructor injection for Jersey sample

This commit is contained in:
Dave Syer 2014-11-23 07:27:49 +00:00
parent 9f7bd0cddc
commit f21d58ada7

View File

@ -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();