設定 Hello 世界示例

Guice 是一個 Java 庫。要使用它,你必須將 JAR 檔案新增到 Java 專案的類路徑中。

示例類

以下是 Hello World! 的幾個類。例。

hello服務的介面:

public interface HelloWorldService {
    public void sayHello();
}

服務的實施:

public class HelloWorldServiceImpl implements HelloWorldService {
    @Override
    public void sayHello() {
        System.out.println("Hello, world!");
    }
}

Guice 命名模組。需要指示 Guice 將 HelloWorldServiceImpl 注入需要 hello 服務的地方。

import com.google.inject.AbstractModule;

public class HelloWorldModule extends AbstractModule {
    protected void configure() {
        bind(HelloWorldService.class).to(HelloWorldServiceImpl.class);
    }
}

實際注入 hello 服務的主類:

import javax.inject.Inject;

import com.google.inject.Guice;
import com.google.inject.Injector;
import com.google.inject.Module;

public class Main {

    @Inject
    private HelloWorldService service;//hello service
    
    public static void main(String[] args) {
        
        Main main = new Main();
        
        Module module = new HelloWorldModule();
        Injector injector = Guice.createInjector(module);
        injector.injectMembers(main);//injects the implementation of the service
        
        main.testGuice();
    }

    public void testGuice()
    {
        service.sayHello();//usage of the service
    }
}

使用 Gradle 執行

要快速設定並執行 Gradle 2.2。+和 Java 8:

  1. 如果尚未安裝,請安裝 gradle

  2. 建立一個空目錄並使用啟用 gradle 的 shell 導航到該目錄

  3. 建立一個空的 java 專案:

    gradle init --type java-library

  4. 在自動生成的 build.gradle 中:

  • apply plugin: 'java'改為 apply plugin: 'application'

  • 新增以下行

    mainClassName = 'Main'

  • 在依賴項部分中新增依賴項到 guice 的版本,例如:

    dependencies {
      ...
      compile group: 'com.google.inject', name: 'guice', version: '4.1.0'
      ...
    }
    
  1. 將上面顯示的類新增到 src/main/java 的預設包中,每個包都在自己的檔案中

  2. 跑步和享受

    ..> gradlew run
        :compileJava
        :processResources UP-TO-DATE
        :classes
        :run
        Hello, world!
    
        BUILD SUCCESSFUL
    
        Total time: 3.595 secs
    

與 Maven 一起執行

要快速設定並執行 Maven 3+和 Java 8:

  1. 如果尚未安裝,請安裝 maven

  2. 建立一個空目錄並使用 maven 啟用的 shell 導航到該目錄

  3. 建立一個空的 java 專案:

    mvn archetype:generate -DgroupId=com.example -DartifactId=guice -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

  4. 切換到 guice 子目錄

  5. 在自動生成的 pom.xml 中:

  • dependencies 元素中新增一個依賴關係到 guice:
<dependency>
   <groupId>com.google.inject</groupId>
   <artifactId>guice</artifactId>
   <version>4.1.0</version>
</dependency>
  • 將以下外掛新增到你的專案中(允許輕鬆的測試執行)
<project>
  .....
  <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>1.5.0</version>
                <configuration>
                    <mainClass>Main</mainClass>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
  1. 將上面顯示的類新增到 src/main/java 的預設包中,每個包都在自己的檔案中
  2. 跑步和享受
...\guice>mvn exec:java
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building guice 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- exec-maven-plugin:1.5.0:java (default-cli) @ guice ---
Hello, world!
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.800 s
[INFO] Finished at: 2016-10-09T11:44:41+03:00
[INFO] Final Memory: 10M/309M
[INFO] ------------------------------------------------------------------------