spring-data-elasticsearch ElasticsearchCustomConversions 源码
spring-data-elasticsearch ElasticsearchCustomConversions 代码
文件路径:/src/main/java/org/springframework/data/elasticsearch/core/convert/ElasticsearchCustomConversions.java
/*
* Copyright 2018-2022 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.convert;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Base64;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.UUID;
import org.springframework.core.convert.converter.Converter;
import org.springframework.data.convert.CustomConversions;
import org.springframework.data.convert.ReadingConverter;
import org.springframework.data.convert.WritingConverter;
import org.springframework.data.elasticsearch.core.mapping.ElasticsearchSimpleTypes;
import org.springframework.util.NumberUtils;
/**
* Elasticsearch specific {@link CustomConversions}.
*
* @author Christoph Strobl
* @author Peter-Josef Meisch
* @since 3.2
*/
public class ElasticsearchCustomConversions extends CustomConversions {
private static final StoreConversions STORE_CONVERSIONS;
private static final List<Converter<?, ?>> STORE_CONVERTERS;
static {
List<Converter<?, ?>> converters = new ArrayList<>(GeoConverters.getConvertersToRegister());
converters.add(StringToUUIDConverter.INSTANCE);
converters.add(UUIDToStringConverter.INSTANCE);
converters.add(BigDecimalToDoubleConverter.INSTANCE);
converters.add(DoubleToBigDecimalConverter.INSTANCE);
converters.add(ByteArrayToBase64Converter.INSTANCE);
converters.add(Base64ToByteArrayConverter.INSTANCE);
STORE_CONVERTERS = Collections.unmodifiableList(converters);
STORE_CONVERSIONS = StoreConversions.of(ElasticsearchSimpleTypes.HOLDER, STORE_CONVERTERS);
}
/**
* Creates a new {@link CustomConversions} instance registering the given converters.
*
* @param converters must not be {@literal null}.
*/
public ElasticsearchCustomConversions(Collection<?> converters) {
super(STORE_CONVERSIONS, converters);
}
/**
* {@link Converter} to read a {@link UUID} from its {@link String} representation.
*/
@ReadingConverter
enum StringToUUIDConverter implements Converter<String, UUID> {
INSTANCE;
@Override
public UUID convert(String source) {
return UUID.fromString(source);
}
}
/**
* {@link Converter} to write a {@link UUID} to its {@link String} representation.
*/
@WritingConverter
enum UUIDToStringConverter implements Converter<UUID, String> {
INSTANCE;
@Override
public String convert(UUID source) {
return source.toString();
}
}
/**
* {@link Converter} to read a {@link BigDecimal} from a {@link Double} value.
*/
@ReadingConverter
enum DoubleToBigDecimalConverter implements Converter<Double, BigDecimal> {
INSTANCE;
@Override
public BigDecimal convert(Double source) {
return NumberUtils.convertNumberToTargetClass(source, BigDecimal.class);
}
}
/**
* {@link Converter} to write a {@link BigDecimal} to a {@link Double} value.
*/
@WritingConverter
enum BigDecimalToDoubleConverter implements Converter<BigDecimal, Double> {
INSTANCE;
@Override
public Double convert(BigDecimal source) {
return NumberUtils.convertNumberToTargetClass(source, Double.class);
}
}
/**
* {@link Converter} to write a byte[] to a base64 encoded {@link String} value.
*
* @since 4.0
*/
@WritingConverter
enum ByteArrayToBase64Converter implements Converter<byte[], String> {
INSTANCE,;
@Override
public String convert(byte[] source) {
return Base64.getEncoder().encodeToString(source);
}
}
/**
* {@link Converter} to read a byte[] from a base64 encoded {@link String} value.
*
* @since 4.0
*/
@ReadingConverter
enum Base64ToByteArrayConverter implements Converter<String, byte[]> {
INSTANCE;
@Override
public byte[] convert(String source) {
return Base64.getDecoder().decode(source);
}
}
}
相关信息
spring-data-elasticsearch 源码目录
相关文章
spring-data-elasticsearch AbstractPropertyValueConverter 源码
spring-data-elasticsearch AbstractRangePropertyValueConverter 源码
spring-data-elasticsearch ConversionException 源码
spring-data-elasticsearch DateFormatter 源码
spring-data-elasticsearch DatePropertyValueConverter 源码
spring-data-elasticsearch DateRangePropertyValueConverter 源码
spring-data-elasticsearch DefaultElasticsearchTypeMapper 源码
spring-data-elasticsearch ElasticsearchConverter 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦