All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vladmihalcea.hibernate.query.SQLExtractor Maven / Gradle / Ivy

There is a newer version: 2.21.1
Show newest version
package com.vladmihalcea.hibernate.query;

import com.vladmihalcea.hibernate.util.ReflectionUtils;
import jakarta.persistence.Query;

/**
 * The {@link SQLExtractor} allows you to extract the
 * underlying SQL query generated by a JPQL or JPA Criteria API query.
 * 

* For more details about how to use it, check out this article on vladmihalcea.com. * * @author Vlad Mihalcea * @since 2.9.11 */ public class SQLExtractor { protected SQLExtractor() { } /** * Get the underlying SQL generated by the provided JPA query. * * @param query JPA query * @return the underlying SQL generated by the provided JPA query */ public static String from(Query query) { return ReflectionUtils.invokeMethod(query, "getQueryString"); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy