本文整理汇总了Java中org.springframework.core.serializer.support.SerializingConverter类的典型用法代码示例。如果您正苦于以下问题:Java SerializingConverter类的具体用法?Java SerializingConverter怎么用?Java SerializingConverter使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
SerializingConverter类属于org.springframework.core.serializer.support包,在下文中一共展示了SerializingConverter类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: safeConversionService
import org.springframework.core.serializer.support.SerializingConverter; //导入依赖的package包/类
private static GenericConversionService safeConversionService() {
final GenericConversionService converter = new GenericConversionService();
converter.addConverter(Object.class, byte[].class, new SerializingConverter());
final DeserializingConverter byteConverter = new DeserializingConverter();
converter.addConverter(byte[].class, Object.class, (byte[] bytes) -> {
try {
return byteConverter.convert(bytes);
} catch (SerializationFailedException e) {
LOG.error("Could not extract attribute: {}", e.getMessage());
return null;
}
});
return converter;
}
示例2: serializeAndDeserializeString
import org.springframework.core.serializer.support.SerializingConverter; //导入依赖的package包/类
@Test
public void serializeAndDeserializeString() {
SerializingConverter toBytes = new SerializingConverter();
byte[] bytes = toBytes.convert("Testing");
DeserializingConverter fromBytes = new DeserializingConverter();
assertEquals("Testing", fromBytes.convert(bytes));
}
示例3: nonSerializableObject
import org.springframework.core.serializer.support.SerializingConverter; //导入依赖的package包/类
@Test
public void nonSerializableObject() {
SerializingConverter toBytes = new SerializingConverter();
try {
toBytes.convert(new Object());
fail("Expected IllegalArgumentException");
}
catch (SerializationFailedException e) {
assertNotNull(e.getCause());
assertTrue(e.getCause() instanceof IllegalArgumentException);
}
}
示例4: nonSerializableField
import org.springframework.core.serializer.support.SerializingConverter; //导入依赖的package包/类
@Test
public void nonSerializableField() {
SerializingConverter toBytes = new SerializingConverter();
try {
toBytes.convert(new UnSerializable());
fail("Expected SerializationFailureException");
}
catch (SerializationFailedException e) {
assertNotNull(e.getCause());
assertTrue(e.getCause() instanceof NotSerializableException);
}
}
示例5: getContributingUrls
import org.springframework.core.serializer.support.SerializingConverter; //导入依赖的package包/类
@Test
@EnqueueRequests({
"getContributingUrls302",
"getContributingUrls200",
"getContributingUrls404",
"getContributingUrls404",
"getContributingUrls302",
"getContributingUrls200",
"getContributingUrls404"
})
public void getContributingUrls() {
// make sure we use GitHubHost and not the GitHubApiHost
oauthConfig.setGitHubApiHost("donotuse");
oauthConfig.setGitHubHost(server.getServer().getHostName());
service = new MylynGitHubApi(oauthConfig);
List<String> repositoryIds = Arrays.asList("spring-projects/has-md", "spring-projects/has-adoc", "spring-projects/no-contributor");
ContributingUrlsResponse urls = service.getContributingUrls(repositoryIds);
assertThat(urls.getAsciidoc()).containsExactly(
server.getServerUrl() + "/spring-projects/has-adoc/edit/master/CONTRIBUTING.adoc",
server.getServerUrl() + "/spring-projects/no-contributor/new/master?filename=CONTRIBUTING.adoc");
assertThat(urls.getMarkdown()).containsOnly(server.getServerUrl() + "/spring-projects/has-md/edit/master/CONTRIBUTING.md");
SerializingConverter converter = new SerializingConverter();
// ensure we can serialize the result as it is placed in FlashMap
assertThat(converter.convert(urls.getMarkdown())).isNotNull();
assertThat(converter.convert(urls.getAsciidoc())).isNotNull();
}
示例6: createConversionServiceWithBeanClassLoader
import org.springframework.core.serializer.support.SerializingConverter; //导入依赖的package包/类
private GenericConversionService createConversionServiceWithBeanClassLoader() {
GenericConversionService conversionService = new GenericConversionService();
conversionService.addConverter(Object.class, byte[].class,
new SerializingConverter());
conversionService.addConverter(byte[].class, Object.class,
new DeserializingConverter(this.classLoader));
return conversionService;
}
示例7: createDefaultConversionService
import org.springframework.core.serializer.support.SerializingConverter; //导入依赖的package包/类
private static GenericConversionService createDefaultConversionService() {
GenericConversionService converter = new GenericConversionService();
converter.addConverter(Object.class, byte[].class,
new SerializingConverter());
converter.addConverter(byte[].class, Object.class,
new DeserializingConverter());
return converter;
}
示例8: JdkTarantoolSerializer
import org.springframework.core.serializer.support.SerializingConverter; //导入依赖的package包/类
public JdkTarantoolSerializer() {
this(new SerializingConverter(), new DeserializingConverter());
}
示例9: JdkMongoSessionConverter
import org.springframework.core.serializer.support.SerializingConverter; //导入依赖的package包/类
public JdkMongoSessionConverter(Duration maxInactiveInterval) {
this(new SerializingConverter(), new DeserializingConverter(), maxInactiveInterval);
}
示例10: constructorNullDeserializer
import org.springframework.core.serializer.support.SerializingConverter; //导入依赖的package包/类
@Test(expected = IllegalArgumentException.class)
public void constructorNullDeserializer() {
new JdkMongoSessionConverter(new SerializingConverter(), null, inactiveInterval);
}
开发者ID:spring-projects,项目名称:spring-session-data-mongodb,代码行数:5,代码来源:JdkMongoSessionConverterTest.java