Учебники

Google Guice — первое приложение

Давайте создадим пример консольного приложения, в котором мы шаг за шагом продемонстрируем внедрение зависимостей, используя механизм привязки Guice.

Шаг 1: Создать интерфейс

//spell checker interface
interface SpellChecker {
   public void checkSpelling();
}

Шаг 2: Создать реализацию

//spell checker implementation
class SpellCheckerImpl implements SpellChecker {
   @Override
   public void checkSpelling() {
      System.out.println("Inside checkSpelling." );
   } 
}

Шаг 3. Создание модуля привязок

//Binding Module
class TextEditorModule extends AbstractModule {
   @Override
   protected void configure() {
      bind(SpellChecker.class).to(SpellCheckerImpl.class);
   } 
}

Шаг 4: Создать класс с зависимостью

class TextEditor {
   private SpellChecker spellChecker;
   
   @Inject
   public TextEditor(SpellChecker spellChecker) {
      this.spellChecker = spellChecker;
   }
   public void makeSpellCheck() {
      spellChecker.checkSpelling();
   }
}

Шаг 5: Создать инжектор

Injector injector = Guice.createInjector(new TextEditorModule());

Шаг 6: Получить объект с выполненной зависимостью

TextEditor editor = injector.getInstance(TextEditor.class);

Шаг 7: Используйте объект

editor.makeSpellCheck(); 

Полный пример

Создайте Java-класс с именем GuiceTester.

GuiceTester.java

import com.google.inject.AbstractModule;
import com.google.inject.Guice;
import com.google.inject.Inject;
import com.google.inject.Injector;

public class GuiceTester {
   public static void main(String[] args) {
      Injector injector = Guice.createInjector(new TextEditorModule());
      TextEditor editor = injector.getInstance(TextEditor.class);
      editor.makeSpellCheck(); 
   } 
}
class TextEditor {
   private SpellChecker spellChecker;

   @Inject
   public TextEditor(SpellChecker spellChecker) {
      this.spellChecker = spellChecker;
   }
   public void makeSpellCheck() {
      spellChecker.checkSpelling();
   }
}

//Binding Module
class TextEditorModule extends AbstractModule {
   @Override
   
   protected void configure() {
      bind(SpellChecker.class).to(SpellCheckerImpl.class);
   } 
}

//spell checker interface
interface SpellChecker {
   public void checkSpelling();
}

//spell checker implementation
class SpellCheckerImpl implements SpellChecker {
   @Override
   
   public void checkSpelling() {
      System.out.println("Inside checkSpelling." );
   } 
}

Выход

Скомпилируйте и запустите файл, вы увидите следующий вывод.