Browse Source

Use constructor injection for Jersey sample

pull/1979/merge
Dave Syer 11 years ago
parent
commit
f21d58ada7
  1. 6
      spring-boot-samples/spring-boot-sample-jersey/src/main/java/sample/jersey/Endpoint.java

6
spring-boot-samples/spring-boot-sample-jersey/src/main/java/sample/jersey/Endpoint.java

@ -26,9 +26,13 @@ import org.springframework.stereotype.Component; @@ -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();

Loading…
Cancel
Save