设置 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:
-
如果尚未安装,请安装 gradle
-
创建一个空目录并使用启用 gradle 的 shell 导航到该目录
-
创建一个空的 java 项目:
gradle init --type java-library
-
在自动生成的
build.gradle
中:
-
将
apply plugin: 'java'
改为apply plugin: 'application'
-
添加以下行
mainClassName = 'Main'
-
在依赖项部分中添加依赖项到 guice 的版本,例如:
dependencies { ... compile group: 'com.google.inject', name: 'guice', version: '4.1.0' ... }
-
将上面显示的类添加到
src/main/java
的默认包中,每个包都在自己的文件中 -
跑步和享受
..> gradlew run :compileJava :processResources UP-TO-DATE :classes :run Hello, world! BUILD SUCCESSFUL Total time: 3.595 secs
与 Maven 一起运行
要快速设置并运行 Maven 3+和 Java 8:
-
如果尚未安装,请安装 maven
-
创建一个空目录并使用 maven 启用的 shell 导航到该目录
-
创建一个空的 java 项目:
mvn archetype:generate -DgroupId=com.example -DartifactId=guice -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false
-
切换到
guice
子目录 -
在自动生成的
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>
- 将上面显示的类添加到
src/main/java
的默认包中,每个包都在自己的文件中 - 跑步和享受
...\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] ------------------------------------------------------------------------