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


Java MarshallingHttpMessageConverter类代码示例

本文整理汇总了Java中org.springframework.http.converter.xml.MarshallingHttpMessageConverter的典型用法代码示例。如果您正苦于以下问题:Java MarshallingHttpMessageConverter类的具体用法?Java MarshallingHttpMessageConverter怎么用?Java MarshallingHttpMessageConverter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


MarshallingHttpMessageConverter类属于org.springframework.http.converter.xml包,在下文中一共展示了MarshallingHttpMessageConverter类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getMessageConverter

import org.springframework.http.converter.xml.MarshallingHttpMessageConverter; //导入依赖的package包/类
/**
 * @param xstreamMarshaller The fully configured {@link XStreamMarshaller}
 * @return The configured {@link MarshallingHttpMessageConverter}.
 */
@Bean
public MarshallingHttpMessageConverter getMessageConverter(
    final XStreamMarshaller xstreamMarshaller) {
  final List<MediaType> mediaTypes = new ArrayList<>();
  mediaTypes.add(MediaType.APPLICATION_XML);
  mediaTypes.add(MediaType.APPLICATION_FORM_URLENCODED);

  final MarshallingHttpMessageConverter xmlConverter = new MarshallingHttpMessageConverter();
  xmlConverter.setSupportedMediaTypes(mediaTypes);

  xmlConverter.setMarshaller(xstreamMarshaller);
  xmlConverter.setUnmarshaller(xstreamMarshaller);

  return xmlConverter;
}
 
开发者ID:adobe,项目名称:S3Mock,代码行数:20,代码来源:S3MockApplication.java

示例2: responseBodyArgMismatch

import org.springframework.http.converter.xml.MarshallingHttpMessageConverter; //导入依赖的package包/类
@Test
public void responseBodyArgMismatch() throws ServletException, IOException {
	initServlet(new ApplicationContextInitializer<GenericWebApplicationContext>() {
		@Override
		public void initialize(GenericWebApplicationContext wac) {
			Jaxb2Marshaller marshaller = new Jaxb2Marshaller();
			marshaller.setClassesToBeBound(A.class, B.class);
			try {
				marshaller.afterPropertiesSet();
			}
			catch (Exception ex) {
				throw new BeanCreationException(ex.getMessage(), ex);
			}
			MarshallingHttpMessageConverter messageConverter = new MarshallingHttpMessageConverter(marshaller);

			RootBeanDefinition adapterDef = new RootBeanDefinition(RequestMappingHandlerAdapter.class);
			adapterDef.getPropertyValues().add("messageConverters", messageConverter);
			wac.registerBeanDefinition("handlerAdapter", adapterDef);
		}
	}, RequestBodyArgMismatchController.class);

	MockHttpServletRequest request = new MockHttpServletRequest("PUT", "/something");
	String requestBody = "<b/>";
	request.setContent(requestBody.getBytes("UTF-8"));
	request.addHeader("Content-Type", "application/xml; charset=utf-8");
	MockHttpServletResponse response = new MockHttpServletResponse();
	getServlet().service(request, response);
	assertEquals(400, response.getStatus());
}
 
开发者ID:langtianya,项目名称:spring4-understanding,代码行数:30,代码来源:ServletAnnotationControllerHandlerMethodTests.java

示例3: configureMessageConverters

import org.springframework.http.converter.xml.MarshallingHttpMessageConverter; //导入依赖的package包/类
@Override
public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {

	FilteringJackson2HttpMessageConverter jsonConverter 
			= new FilteringJackson2HttpMessageConverter();
	jsonConverter.setSupportedMediaTypes(ApiMediaTypes.getJsonMediaTypes());
	converters.add(jsonConverter);
	
	MarshallingHttpMessageConverter xmlConverter = new MarshallingHttpMessageConverter();
	xmlConverter.setSupportedMediaTypes(ApiMediaTypes.getXmlMediaTypes());
	XStreamMarshaller xStreamMarshaller = new XStreamMarshaller();
	xmlConverter.setMarshaller(xStreamMarshaller);
	xmlConverter.setUnmarshaller(xStreamMarshaller);
	converters.add(xmlConverter);
	
	FilteringTextMessageConverter filteringTextMessageConverter = 
			new FilteringTextMessageConverter(new MediaType("text", "plain", Charset.forName("utf-8")));
	filteringTextMessageConverter.setDelimiter("\t");
	converters.add(filteringTextMessageConverter);
	
}
 
开发者ID:oncoblocks,项目名称:centromere,代码行数:22,代码来源:WebServicesConfig.java

示例4: responseBodyArgMismatch

import org.springframework.http.converter.xml.MarshallingHttpMessageConverter; //导入依赖的package包/类
@Test
public void responseBodyArgMismatch() throws ServletException, IOException {
	@SuppressWarnings("serial") DispatcherServlet servlet = new DispatcherServlet() {
		@Override
		protected WebApplicationContext createWebApplicationContext(WebApplicationContext parent) {
			GenericWebApplicationContext wac = new GenericWebApplicationContext();
			wac.registerBeanDefinition("controller", new RootBeanDefinition(RequestBodyArgMismatchController.class));

			Jaxb2Marshaller marshaller = new Jaxb2Marshaller();
			marshaller.setClassesToBeBound(A.class, B.class);
			try {
				marshaller.afterPropertiesSet();
			}
			catch (Exception ex) {
				throw new BeanCreationException(ex.getMessage(), ex);
			}

			MarshallingHttpMessageConverter messageConverter = new MarshallingHttpMessageConverter(marshaller);

			RootBeanDefinition adapterDef = new RootBeanDefinition(AnnotationMethodHandlerAdapter.class);
			adapterDef.getPropertyValues().add("messageConverters", messageConverter);
			wac.registerBeanDefinition("handlerAdapter", adapterDef);
			wac.refresh();
			return wac;
		}
	};
	servlet.init(new MockServletConfig());


	MockHttpServletRequest request = new MockHttpServletRequest("PUT", "/something");
	String requestBody = "<b/>";
	request.setContent(requestBody.getBytes("UTF-8"));
	request.addHeader("Content-Type", "application/xml; charset=utf-8");
	MockHttpServletResponse response = new MockHttpServletResponse();
	servlet.service(request, response);
	assertEquals(400, response.getStatus());
}
 
开发者ID:langtianya,项目名称:spring4-understanding,代码行数:38,代码来源:ServletAnnotationControllerTests.java

示例5: createXmlHttpMessageConverter

import org.springframework.http.converter.xml.MarshallingHttpMessageConverter; //导入依赖的package包/类
private HttpMessageConverter<Object> createXmlHttpMessageConverter() {
       MarshallingHttpMessageConverter xmlConverter = 
         new MarshallingHttpMessageConverter();

       
       XStreamMarshaller xstreamMarshaller = new XStreamMarshaller();
       xmlConverter.setMarshaller(xstreamMarshaller);
       xmlConverter.setUnmarshaller(xstreamMarshaller);

       return xmlConverter;
}
 
开发者ID:hserv,项目名称:coordinated-entry,代码行数:12,代码来源:AppConfig.java

示例6: createXmlHttpMessageConverter

import org.springframework.http.converter.xml.MarshallingHttpMessageConverter; //导入依赖的package包/类
private HttpMessageConverter<Object> createXmlHttpMessageConverter() {
	MarshallingHttpMessageConverter xmlConverter = new MarshallingHttpMessageConverter();

	XStreamMarshaller xstreamMarshaller = new XStreamMarshaller();
	xmlConverter.setMarshaller(xstreamMarshaller);
	xmlConverter.setUnmarshaller(xstreamMarshaller);

	return xmlConverter;
}
 
开发者ID:hserv,项目名称:coordinated-entry,代码行数:10,代码来源:RestConfig.java

示例7: marshallingMessageConverter

import org.springframework.http.converter.xml.MarshallingHttpMessageConverter; //导入依赖的package包/类
/**
 * Gets a new marshalling HTTP message converter that is aware of our custom JAXB marshaller.
 *
 * @return the newly created message converter.
 */
@Bean
public MarshallingHttpMessageConverter marshallingMessageConverter()
{
    // Return a new marshalling HTTP message converter with our custom JAXB marshaller.
    return new MarshallingHttpMessageConverter(jaxb2Marshaller(), jaxb2Marshaller());
}
 
开发者ID:FINRAOS,项目名称:herd,代码行数:12,代码来源:RestSpringModuleConfig.java


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