本文整理汇总了Java中org.springframework.data.rest.core.mapping.ResourceMappings类的典型用法代码示例。如果您正苦于以下问题:Java ResourceMappings类的具体用法?Java ResourceMappings怎么用?Java ResourceMappings使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ResourceMappings类属于org.springframework.data.rest.core.mapping包,在下文中一共展示了ResourceMappings类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setup
import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
@Before
public void setup() {
when(persistentProperty.isAssociation()).thenReturn(true);
when(persistentProperty.getActualType()).thenReturn((Class) OtherRepositoryClass.class);
when(persistentProperty.getType()).thenReturn((Class) OtherRepositoryClass.class);
ResourceMappings mappings = mock(ResourceMappings.class);
ResourceMetadata metaData = mock(ResourceMetadata.class);
when(metaData.getPath()).thenReturn(new Path("otherRepositoryClasses"));
when(metaData.isExported()).thenReturn(true);
when(mappings.getMetadataFor(eq(OtherRepositoryClass.class))).thenReturn(metaData);
ModuleRegistry moduleRegistry = mock(ModuleRegistry.class);
when(moduleRegistry.getModuleForResource(anyString())).thenReturn("environment-module");
propertyFactory = new AssociationPropertyFactory(createConfiguration(), mappings, moduleRegistry);
}
示例2: StateEngine
import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
public StateEngine(SubmissionEnvelopeRepository submissionEnvelopeRepository,
MessageSender messageSender,
ResourceMappings mappings,
RepositoryRestConfiguration config) {
this.submissionEnvelopeRepository = submissionEnvelopeRepository;
this.messageSender = messageSender;
this.mappings = mappings;
this.config = config;
this.executorService = Executors.newCachedThreadPool();
}
示例3: ApplicationStructureController
import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
@Autowired
public ApplicationStructureController(ApplicationStructureBuilder applicationStructureBuilder, RepositoryRestConfiguration configuration, Repositories repositories, ResourceMappings mappings) {
Assert.notNull(applicationStructureBuilder, "ApplicationStructureBuilder must not be null!");
Assert.notNull(configuration, "RepositoryRestConfiguration must not be null!");
Assert.notNull(repositories, "Repositories must not be null!");
Assert.notNull(mappings, "ResourceMappings must not be null!");
this.applicationStructureBuilder = applicationStructureBuilder;
this.configuration = configuration;
this.repositories = repositories;
this.mappings = mappings;
}
示例4: setupMocks
import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
public void setupMocks() throws URISyntaxException {
configuration = mock(RepositoryRestConfiguration.class);
when(configuration.getBaseUri()).thenReturn(new URI("http://localhost:8080/"));
mappings = mock(ResourceMappings.class);
metaData = mock(ResourceMetadata.class);
when(metaData.getPath()).thenReturn(new Path("valueLists"));
PersistentEntity persistentEntity = mock(PersistentEntity.class);
when(persistentEntities.getPersistentEntity(any())).thenReturn(persistentEntity);
PersistentProperty persistentProperty = mock(PersistentProperty.class);
when(persistentEntity.getPersistentProperty(any(String.class))).thenReturn(persistentProperty);
when(entityLinks.linkFor(any())).thenReturn(BaseUriLinkBuilder.create(new URI("http://localhost:8080/")));
moduleRegistry = mock(ModuleRegistry.class);
when(moduleRegistry.getBaseUriForResource(anyString())).thenReturn(new RestUri("http://localhost:8080/valueLists"));
}
示例5: using
import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
public static SubmissionEnvelopeMessageBuilder using(ResourceMappings mappings,
RepositoryRestConfiguration config) {
return new SubmissionEnvelopeMessageBuilder(mappings, config);
}
示例6: SubmissionEnvelopeMessageBuilder
import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
private SubmissionEnvelopeMessageBuilder(ResourceMappings mappings, RepositoryRestConfiguration config) {
this.mappings = mappings;
this.config = config;
}
示例7: using
import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
public static MetadataDocumentMessageBuilder using(ResourceMappings mappings, RepositoryRestConfiguration config) {
return new MetadataDocumentMessageBuilder(mappings, config);
}
示例8: MetadataDocumentMessageBuilder
import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
private MetadataDocumentMessageBuilder(ResourceMappings mappings, RepositoryRestConfiguration config) {
this.mappings = mappings;
this.config = config;
}
示例9: AssociationPropertyFactory
import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
@Autowired
public AssociationPropertyFactory(RepositoryRestConfiguration configuration, ResourceMappings mappings, ModuleRegistry moduleRegistry) {
this.configuration = configuration;
this.mappings = mappings;
this.moduleRegistry = moduleRegistry;
}
示例10: DemoRepositoryEntityLinks
import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
public DemoRepositoryEntityLinks(Repositories repositories,
ResourceMappings mappings, RepositoryRestConfiguration config, HateoasPageableHandlerMethodArgumentResolver resolver,org.springframework.plugin.core.PluginRegistry<BackendIdConverter,Class<?>> idConverters) {
super(repositories, mappings, config, resolver,idConverters);
this.resourceMappings = mappings;
this.config = config;
}