Google Guice - zakresy
Guice zwraca nową instancję za każdym razem, gdy dostarcza wartość jako domyślne zachowanie. Można go konfigurować za pomocą zakresów. Oto zakresy obsługiwane przez Guice:
@Singleton- Pojedyncza instancja na cały okres istnienia aplikacji. Obiekt @Singleton musi być bezpieczny dla wątków.
@SessionScoped- Pojedyncza instancja dla określonej sesji aplikacji internetowej. Obiekt @SessionScoped musi być bezpieczny wątkowo.
@RequestScoped- Pojedyncza instancja dla konkretnego żądania aplikacji internetowej. Obiekt @RequestScoped nie musi być wątkowo bezpieczny.
Sposób stosowania zakresów.
Poniżej przedstawiono sposoby stosowania zakresów.
Na poziomie klasy
@Singleton
class SpellCheckerImpl implements SpellChecker {
public SpellCheckerImpl(){}
@Override
public void checkSpelling() {
System.out.println("Inside checkSpelling." );
}
}
Na poziomie konfiguracji
bind(SpellChecker.class).to(SpellCheckerImpl.class).in(Singleton.class);
Na poziomie metody
@Provides @Singleton
public SpellChecker provideSpellChecker(){
String dbUrl = "jdbc:mysql://localhost:5326/emp";
String user = "user";
int timeout = 100;
SpellChecker SpellChecker = new SpellCheckerImpl(dbUrl, user, timeout);
return SpellChecker;
}
Przykład
Zobaczmy, jak działa Scope na poziomie klasy.
Wynik z adnotacją @Singleton
Utwórz klasę Java o nazwie GuiceTester.
GuiceTester.java
import com.google.inject.AbstractModule;
import com.google.inject.Guice;
import com.google.inject.Inject;
import com.google.inject.Injector;
import com.google.inject.Singleton;
public class GuiceTester {
public static void main(String[] args) {
Injector injector = Guice.createInjector(new TextEditorModule());
SpellChecker spellChecker = new SpellCheckerImpl();
injector.injectMembers(spellChecker);
TextEditor editor = injector.getInstance(TextEditor.class);
System.out.println(editor.getSpellCheckerId());
TextEditor editor1 = injector.getInstance(TextEditor.class);
System.out.println(editor1.getSpellCheckerId());
}
}
class TextEditor {
private SpellChecker spellChecker;
@Inject
public void setSpellChecker(SpellChecker spellChecker){
this.spellChecker = spellChecker;
}
public TextEditor() { }
public void makeSpellCheck(){
spellChecker.checkSpelling();
}
public double getSpellCheckerId(){
return spellChecker.getId();
}
}
//Binding Module
class TextEditorModule extends AbstractModule {
@Override
protected void configure() {
bind(SpellChecker.class).to(SpellCheckerImpl.class);
}
}
interface SpellChecker {
public double getId();
public void checkSpelling();
}
@Singleton
class SpellCheckerImpl implements SpellChecker {
double id;
public SpellCheckerImpl(){
id = Math.random();
}
@Override
public void checkSpelling() {
System.out.println("Inside checkSpelling." );
}
@Override
public double getId() {
return id;
}
}
Skompiluj i uruchom plik, możesz zobaczyć następujące dane wyjściowe z tymi samymi numerami.
0.3055839187063575
0.3055839187063575
Wynik bez adnotacji @Singleton
Utwórz klasę Java o nazwie 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());
SpellChecker spellChecker = new SpellCheckerImpl();
injector.injectMembers(spellChecker);
TextEditor editor = injector.getInstance(TextEditor.class);
System.out.println(editor.getSpellCheckerId());
TextEditor editor1 = injector.getInstance(TextEditor.class);
System.out.println(editor1.getSpellCheckerId());
}
}
class TextEditor {
private SpellChecker spellChecker;
@Inject
public void setSpellChecker(SpellChecker spellChecker){
this.spellChecker = spellChecker;
}
public TextEditor() { }
public void makeSpellCheck(){
spellChecker.checkSpelling();
}
public double getSpellCheckerId(){
return spellChecker.getId();
}
}
//Binding Module
class TextEditorModule extends AbstractModule {
@Override
protected void configure() {
bind(SpellChecker.class).to(SpellCheckerImpl.class);
}
}
interface SpellChecker {
public double getId();
public void checkSpelling();
}
class SpellCheckerImpl implements SpellChecker {
double id;
public SpellCheckerImpl(){
id = Math.random();
}
@Override
public void checkSpelling() {
System.out.println("Inside checkSpelling." );
}
@Override
public double getId() {
return id;
}
}
Wynik
Skompiluj i uruchom plik, możesz zobaczyć następujące dane wyjściowe z różnymi numerami.
0.556007079571739
0.22095011760351602