本文整理汇总了Java中com.google.inject.Module.configure方法的典型用法代码示例。如果您正苦于以下问题:Java Module.configure方法的具体用法?Java Module.configure怎么用?Java Module.configure使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.inject.Module
的用法示例。
在下文中一共展示了Module.configure方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: init
import com.google.inject.Module; //导入方法依赖的package包/类
/**
* Performs the wiring for the given Gradle {@link Project}.
*
* @param project
*/
public static void init(final Project project) {
final Path srcdepsYamlPath = project.getRootDir().toPath().resolve("srcdeps.yaml");
Gradle gradle = project.getGradle();
if (!(gradle instanceof GradleInternal)) {
throw new RuntimeException(String.format("Expected %s, but found %s", GradleInternal.class.getName(),
gradle.getClass().getName()));
}
ServiceRegistry services = ((GradleInternal) gradle).getServices();
if (!(services instanceof DefaultServiceRegistry)) {
throw new RuntimeException(String.format("Expected %s, but found %s",
DefaultServiceRegistry.class.getName(), services.getClass().getName()));
}
ArtifactRepository repo = project.getRepositories()
.findByName(org.gradle.api.artifacts.ArtifactRepositoryContainer.DEFAULT_MAVEN_LOCAL_REPO_NAME);
if (!(repo instanceof MavenArtifactRepository)) {
throw new RuntimeException(
String.format("Expected %s, but found %s", MavenArtifactRepository.class.getName(), repo));
}
final MavenLocalRepository localRepository = new MavenLocalRepository(Paths.get(((MavenArtifactRepository) repo).getUrl()));
final Path scrdepsDir = localRepository.getRootDirectory().getParent().resolve("srcdeps");
final PathLocker<SrcVersion> pathLocker = new PathLocker<>();
final BuildDirectoriesManager buildDirectoriesManager = new BuildDirectoriesManager(scrdepsDir, pathLocker);
ClassLoader classloader = Wiring.class.getClassLoader();
final Module spaceModule = new SpaceModule(new URLClassSpace(classloader));
Module wrappedWiremodule = new Module() {
@Override
public void configure(Binder binder) {
spaceModule.configure(binder);
binder.bind(Path.class).annotatedWith(Names.named(ConfigurationService.SRCDEPS_YAML_PATH))
.toInstance(srcdepsYamlPath);
binder.bind(MavenLocalRepository.class).toInstance(localRepository);
binder.bind(new TypeLiteral<PathLocker<SrcVersion>>() {
}).toInstance(pathLocker);
binder.bind(BuildDirectoriesManager.class).toInstance(buildDirectoriesManager);
}
};
final Module wireModule = new WireModule(wrappedWiremodule);
injector = Guice.createInjector(wireModule);
}