18 lines
330 B
Java
18 lines
330 B
Java
|
|
package com.baeldung.sample;
|
||
|
|
|
||
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
||
|
|
import org.springframework.stereotype.Component;
|
||
|
|
|
||
|
|
@Component
|
||
|
|
public class FooService {
|
||
|
|
|
||
|
|
@Autowired
|
||
|
|
@FormatterType("Foo")
|
||
|
|
private Formatter formatter;
|
||
|
|
|
||
|
|
public String doStuff() {
|
||
|
|
return formatter.format();
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|