public interface GreetingService {
void greet();
}
public class MyApplication {
@Inject
private GreetingService greetingService;
public void run() {
greetingService.greet();
}
}
public class MyApplication {
@Autowired
private GreetingService greetingService;
public void run() {
greetingService.greet();
}
}