org.jdbi.v3.json.internal.JsonArgumentFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdbi3-json Show documentation
Show all versions of jdbi3-json Show documentation
Support for JSON column types. In addition to this module, a
serialization module (jackson2, gson2, moshi) is required.
/*
* 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.jdbi.v3.json.internal;
import java.lang.reflect.Type;
import java.util.Optional;
import java.util.function.Function;
import org.jdbi.v3.core.argument.Argument;
import org.jdbi.v3.core.argument.ArgumentFactory;
import org.jdbi.v3.core.argument.Arguments;
import org.jdbi.v3.core.config.ConfigRegistry;
import org.jdbi.v3.core.internal.JdbiOptionals;
import org.jdbi.v3.core.qualifier.QualifiedType;
import org.jdbi.v3.core.statement.UnableToCreateStatementException;
import org.jdbi.v3.json.EncodedJson;
import org.jdbi.v3.json.Json;
import org.jdbi.v3.json.JsonConfig;
import org.jdbi.v3.json.JsonMapper.TypedJsonMapper;
/**
* converts a value object to json text and delegates to another factory to perform the {@code (@Json) String} binding
*/
@Json
public class JsonArgumentFactory implements ArgumentFactory.Preparable {
public static final QualifiedType ENCODED_JSON = QualifiedType.of(String.class).with(EncodedJson.class);
private static final String JSON_NOT_STORABLE = String.format(
"No argument factory found for `@%s String` or 'String'",
EncodedJson.class.getSimpleName()
);
@Override
public Optional> prepare(Type type, ConfigRegistry config) {
TypedJsonMapper mapper = config.get(JsonConfig.class).getJsonMapper().forType(type, config);
Arguments a = config.get(Arguments.class);
// look for specialized json support first, revert to simple String binding if absent
Function
© 2015 - 2025 Weber Informatics LLC | Privacy Policy