We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e683798 commit 0b4957eCopy full SHA for 0b4957e
1 file changed
spring-security-rest-full/src/main/java/org/baeldung/web/controller/FooController.java
@@ -6,7 +6,7 @@
6
import javax.servlet.http.HttpServletResponse;
7
8
import org.baeldung.persistence.model.Foo;
9
-import org.baeldung.persistence.service.impl.FooService;
+import org.baeldung.persistence.service.IFooService;
10
import org.baeldung.web.util.LinkUtil;
11
import org.baeldung.web.util.ResourceCreated;
12
import org.baeldung.web.util.SingleResourceRetrieved;
@@ -33,7 +33,7 @@ public class FooController {
33
private ApplicationEventPublisher eventPublisher;
34
35
@Autowired
36
- private FooService service;
+ private IFooService service;
37
38
public FooController() {
39
super();
0 commit comments