当前位置: 首页>>代码示例>>Java>>正文


Java SerializingConverter类代码示例

本文整理汇总了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;
}
 
开发者ID:suomenriistakeskus,项目名称:oma-riista-web,代码行数:17,代码来源:HttpSessionConfig.java

示例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));
}
 
开发者ID:langtianya,项目名称:spring4-understanding,代码行数:8,代码来源:SerializationConverterTests.java

示例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);
	}
}
 
开发者ID:langtianya,项目名称:spring4-understanding,代码行数:13,代码来源:SerializationConverterTests.java

示例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);
	}
}
 
开发者ID:langtianya,项目名称:spring4-understanding,代码行数:13,代码来源:SerializationConverterTests.java

示例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();
}
 
开发者ID:pivotalsoftware,项目名称:pivotal-cla,代码行数:32,代码来源:MylynGitHubApiITests.java

示例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;
}
 
开发者ID:spring-projects,项目名称:spring-session,代码行数:9,代码来源:JdbcHttpSessionConfiguration.java

示例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;
}
 
开发者ID:spring-projects,项目名称:spring-session,代码行数:9,代码来源:JdbcOperationsSessionRepository.java

示例8: JdkTarantoolSerializer

import org.springframework.core.serializer.support.SerializingConverter; //导入依赖的package包/类
public JdkTarantoolSerializer() {
    this(new SerializingConverter(), new DeserializingConverter());
}
 
开发者ID:saladinkzn,项目名称:spring-data-tarantool,代码行数:4,代码来源:JdkTarantoolSerializer.java

示例9: JdkMongoSessionConverter

import org.springframework.core.serializer.support.SerializingConverter; //导入依赖的package包/类
public JdkMongoSessionConverter(Duration maxInactiveInterval) {
	this(new SerializingConverter(), new DeserializingConverter(), maxInactiveInterval);
}
 
开发者ID:spring-projects,项目名称:spring-session-data-mongodb,代码行数:4,代码来源:JdkMongoSessionConverter.java

示例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


注:本文中的org.springframework.core.serializer.support.SerializingConverter类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。