Java tutorial
/* * Copyright 2014-2019 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 * * https://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.elasticsearch.core; import java.io.IOException; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import org.springframework.data.annotation.ReadOnlyProperty; import org.springframework.data.elasticsearch.core.geo.CustomGeoModule; import org.springframework.data.elasticsearch.core.mapping.ElasticsearchPersistentEntity; import org.springframework.data.elasticsearch.core.mapping.ElasticsearchPersistentProperty; import org.springframework.data.mapping.MappingException; import org.springframework.data.mapping.context.MappingContext; import org.springframework.util.Assert; import com.fasterxml.jackson.databind.BeanDescription; import com.fasterxml.jackson.databind.DeserializationFeature; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.SerializationConfig; import com.fasterxml.jackson.databind.module.SimpleModule; import com.fasterxml.jackson.databind.ser.BeanPropertyWriter; import com.fasterxml.jackson.databind.ser.BeanSerializerModifier; /** * EntityMapper based on a Jackson {@link ObjectMapper}. * * @author Artur Konczak * @author Petar Tahchiev * @author Oliver Gierke * @author Christoph Strobl */ public class DefaultEntityMapper implements EntityMapper { private ObjectMapper objectMapper; /** * Creates a new {@link DefaultEntityMapper} using the given {@link MappingContext}. * * @param context must not be {@literal null}. */ public DefaultEntityMapper( MappingContext<? extends ElasticsearchPersistentEntity<?>, ElasticsearchPersistentProperty> context) { Assert.notNull(context, "MappingContext must not be null!"); objectMapper = new ObjectMapper(); objectMapper.registerModule(new SpringDataElasticsearchModule(context)); objectMapper.registerModule(new CustomGeoModule()); objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); objectMapper.configure(DeserializationFeature.ACCEPT_SINGLE_VALUE_AS_ARRAY, true); } /* * (non-Javadoc) * @see org.springframework.data.elasticsearch.core.EntityMapper#mapToString(java.lang.Object) */ @Override public String mapToString(Object object) throws IOException { return objectMapper.writeValueAsString(object); } /* * (non-Javadoc) * @see org.springframework.data.elasticsearch.core.EntityMapper#mapObject(java.lang.Object) */ @Override public Map<String, Object> mapObject(Object source) { try { return objectMapper.readValue(mapToString(source), HashMap.class); } catch (IOException e) { throw new MappingException(e.getMessage(), e); } } /* * (non-Javadoc) * @see org.springframework.data.elasticsearch.core.EntityMapper#mapToObject(java.lang.String, java.lang.Class) */ @Override public <T> T mapToObject(String source, Class<T> clazz) throws IOException { return objectMapper.readValue(source, clazz); } /* * (non-Javadoc) * @see org.springframework.data.elasticsearch.core.EntityMapper#readObject(java.util.Map, java.lang.Class) */ @Override public <T> T readObject(Map<String, Object> source, Class<T> targetType) { try { return mapToObject(mapToString(source), targetType); } catch (IOException e) { throw new MappingException(e.getMessage(), e); } } /** * A simple Jackson module to register the {@link SpringDataSerializerModifier}. * * @author Oliver Gierke * @since 3.1 */ private static class SpringDataElasticsearchModule extends SimpleModule { private static final long serialVersionUID = -9168968092458058966L; /** * Creates a new {@link SpringDataElasticsearchModule} using the given {@link MappingContext}. * * @param context must not be {@literal null}. */ public SpringDataElasticsearchModule( MappingContext<? extends ElasticsearchPersistentEntity<?>, ElasticsearchPersistentProperty> context) { Assert.notNull(context, "MappingContext must not be null!"); setSerializerModifier(new SpringDataSerializerModifier(context)); } /** * A {@link BeanSerializerModifier} that will drop properties annotated with {@link ReadOnlyProperty} for * serialization. * * @author Oliver Gierke * @since 3.1 */ private static class SpringDataSerializerModifier extends BeanSerializerModifier { private final MappingContext<? extends ElasticsearchPersistentEntity<?>, ElasticsearchPersistentProperty> context; public SpringDataSerializerModifier( MappingContext<? extends ElasticsearchPersistentEntity<?>, ElasticsearchPersistentProperty> context) { Assert.notNull(context, "MappingContext must not be null!"); this.context = context; } /* * (non-Javadoc) * @see com.fasterxml.jackson.databind.ser.BeanSerializerModifier#changeProperties(com.fasterxml.jackson.databind.SerializationConfig, com.fasterxml.jackson.databind.BeanDescription, java.util.List) */ @Override public List<BeanPropertyWriter> changeProperties(SerializationConfig config, BeanDescription description, List<BeanPropertyWriter> properties) { Class<?> type = description.getBeanClass(); ElasticsearchPersistentEntity<?> entity = context.getPersistentEntity(type); if (entity == null) { return super.changeProperties(config, description, properties); } List<BeanPropertyWriter> result = new ArrayList<>(properties.size()); for (BeanPropertyWriter beanPropertyWriter : properties) { ElasticsearchPersistentProperty property = entity .getPersistentProperty(beanPropertyWriter.getName()); if (property != null && property.isWritable()) { result.add(beanPropertyWriter); } } return result; } } } }