com.guicedee.services.hibernate.ParsedPersistenceXMLDeserializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-core Show documentation
Show all versions of hibernate-core Show documentation
JPMS Module-Info's for a few of the Jakarta Libraries just until they add them in themselves
package com.guicedee.services.hibernate;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import org.hibernate.jpa.boot.internal.ParsedPersistenceXmlDescriptor;
import java.io.IOException;
public class ParsedPersistenceXMLDeserializer extends JsonDeserializer {
@Override
public ParsedPersistenceXmlDescriptor deserialize(JsonParser p, DeserializationContext ctxt) throws IOException, JsonProcessingException {
ParsedPersistenceXmlDescriptor pers = new ParsedPersistenceXmlDescriptor(null);
return pers;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy