Browse Source
Added an XML flavor of the support added in previous commits based on XML Beam [0]. [0] http://www.xmlbeam.org.pull/170/head
5 changed files with 211 additions and 0 deletions
@ -0,0 +1,112 @@
@@ -0,0 +1,112 @@
|
||||
/* |
||||
* Copyright 2015-2016 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
package org.springframework.data.web; |
||||
|
||||
import java.io.IOException; |
||||
import java.util.Collections; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
import org.springframework.core.ResolvableType; |
||||
import org.springframework.core.annotation.AnnotationUtils; |
||||
import org.springframework.http.HttpInputMessage; |
||||
import org.springframework.http.HttpOutputMessage; |
||||
import org.springframework.http.MediaType; |
||||
import org.springframework.http.converter.HttpMessageConverter; |
||||
import org.springframework.http.converter.HttpMessageNotReadableException; |
||||
import org.springframework.http.converter.HttpMessageNotWritableException; |
||||
import org.springframework.util.ConcurrentReferenceHashMap; |
||||
import org.xmlbeam.ProjectionFactory; |
||||
import org.xmlbeam.XBProjector; |
||||
|
||||
/** |
||||
* A read-only {@link HttpMessageConverter} to create XMLBeam-based projection instances for interfaces. |
||||
* |
||||
* @author Oliver Gierke |
||||
* @see http://www.xmlbeam.org
|
||||
* @soundtrack Dr. Kobayashi Maru & The Mothership Connection - Anthem (EPisode One) |
||||
*/ |
||||
public class XmlBeamHttpMessageConverter implements HttpMessageConverter<Object> { |
||||
|
||||
private final ProjectionFactory projectionFactory; |
||||
private final Map<Class<?>, Boolean> supportedTypesCache = new ConcurrentReferenceHashMap<Class<?>, Boolean>(); |
||||
|
||||
/** |
||||
* Creates a new {@link XmlBeamHttpMessageConverter}. |
||||
*/ |
||||
public XmlBeamHttpMessageConverter() { |
||||
this.projectionFactory = new XBProjector(); |
||||
} |
||||
|
||||
/* |
||||
* (non-Javadoc) |
||||
* @see org.springframework.http.converter.HttpMessageConverter#canRead(java.lang.Class, org.springframework.http.MediaType) |
||||
*/ |
||||
@Override |
||||
public boolean canRead(Class<?> type, MediaType mediaType) { |
||||
|
||||
Class<?> rawType = ResolvableType.forType(type).getRawClass(); |
||||
|
||||
Boolean result = supportedTypesCache.get(rawType); |
||||
|
||||
if (result != null) { |
||||
return result; |
||||
} |
||||
|
||||
result = mediaType.isCompatibleWith(MediaType.APPLICATION_XML) && rawType.isInterface() |
||||
&& AnnotationUtils.findAnnotation(rawType, ProjectedPayload.class) != null; |
||||
|
||||
supportedTypesCache.put(rawType, result); |
||||
|
||||
return result; |
||||
} |
||||
|
||||
/* |
||||
* (non-Javadoc) |
||||
* @see org.springframework.http.converter.HttpMessageConverter#canWrite(java.lang.Class, org.springframework.http.MediaType) |
||||
*/ |
||||
@Override |
||||
public boolean canWrite(Class<?> clazz, MediaType mediaType) { |
||||
return false; |
||||
} |
||||
|
||||
/* |
||||
* (non-Javadoc) |
||||
* @see org.springframework.http.converter.HttpMessageConverter#getSupportedMediaTypes() |
||||
*/ |
||||
@Override |
||||
public List<MediaType> getSupportedMediaTypes() { |
||||
return Collections.singletonList(MediaType.APPLICATION_XML); |
||||
} |
||||
|
||||
/* |
||||
* (non-Javadoc) |
||||
* @see org.springframework.http.converter.HttpMessageConverter#read(java.lang.Class, org.springframework.http.HttpInputMessage) |
||||
*/ |
||||
@Override |
||||
public Object read(Class<? extends Object> clazz, HttpInputMessage inputMessage) |
||||
throws IOException, HttpMessageNotReadableException { |
||||
return projectionFactory.io().stream(inputMessage.getBody()).read(clazz); |
||||
} |
||||
|
||||
/* |
||||
* (non-Javadoc) |
||||
* @see org.springframework.http.converter.HttpMessageConverter#write(java.lang.Object, org.springframework.http.MediaType, org.springframework.http.HttpOutputMessage) |
||||
*/ |
||||
@Override |
||||
public void write(Object t, MediaType contentType, HttpOutputMessage outputMessage) |
||||
throws IOException, HttpMessageNotWritableException {} |
||||
} |
||||
@ -0,0 +1,85 @@
@@ -0,0 +1,85 @@
|
||||
/* |
||||
* Copyright 2016 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
package org.springframework.data.web; |
||||
|
||||
import static org.hamcrest.CoreMatchers.*; |
||||
import static org.junit.Assert.*; |
||||
import static org.mockito.Mockito.*; |
||||
|
||||
import java.io.ByteArrayInputStream; |
||||
import java.io.IOException; |
||||
|
||||
import org.junit.Test; |
||||
import org.junit.runner.RunWith; |
||||
import org.mockito.Mock; |
||||
import org.mockito.runners.MockitoJUnitRunner; |
||||
import org.springframework.http.HttpInputMessage; |
||||
import org.xmlbeam.annotation.XBRead; |
||||
|
||||
/** |
||||
* Unit tests for {@link XmlBeamHttpMessageConverter}. |
||||
* |
||||
* @author Oliver Gierke |
||||
* @soundtrack Dr. Kobayashi Maru & The Mothership Connection - Anthem (EPisode One) |
||||
*/ |
||||
@RunWith(MockitoJUnitRunner.class) |
||||
public class XmlBeamHttpMessageConverterUnitTests { |
||||
|
||||
XmlBeamHttpMessageConverter converter = new XmlBeamHttpMessageConverter(); |
||||
|
||||
@Mock HttpInputMessage message; |
||||
|
||||
/** |
||||
* @see DATACMNS-885 |
||||
*/ |
||||
@Test |
||||
public void findsTopLevelElements() throws Exception { |
||||
|
||||
preparePayload("<user><firstname>Dave</firstname><lastname>Matthews</lastname></user>"); |
||||
|
||||
Customer customer = (Customer) converter.read(Customer.class, message); |
||||
|
||||
assertThat(customer.getFirstname(), is("Dave")); |
||||
assertThat(customer.getLastname(), is("Matthews")); |
||||
} |
||||
|
||||
/** |
||||
* @see DATACMNS-885 |
||||
*/ |
||||
@Test |
||||
public void findsNestedElements() throws Exception { |
||||
|
||||
preparePayload("<user><username><firstname>Dave</firstname><lastname>Matthews</lastname></username></user>"); |
||||
|
||||
Customer customer = (Customer) converter.read(Customer.class, message); |
||||
|
||||
assertThat(customer.getFirstname(), is("Dave")); |
||||
assertThat(customer.getLastname(), is("Matthews")); |
||||
} |
||||
|
||||
private void preparePayload(String payload) throws IOException { |
||||
when(message.getBody()).thenReturn(new ByteArrayInputStream(payload.getBytes())); |
||||
} |
||||
|
||||
public interface Customer { |
||||
|
||||
@XBRead("//firstname") |
||||
String getFirstname(); |
||||
|
||||
@XBRead("//lastname") |
||||
String getLastname(); |
||||
} |
||||
} |
||||
Loading…
Reference in new issue