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

com.codingapi.springboot.fast.jpa.JPAQueryContextRegister Maven / Gradle / Ivy

package com.codingapi.springboot.fast.jpa;

import lombok.AllArgsConstructor;
import org.springframework.beans.factory.InitializingBean;

@AllArgsConstructor
public class JPAQueryContextRegister implements InitializingBean {

    private JPAQuery JPAQuery;

    @Override
    public void afterPropertiesSet() throws Exception {
        JpaQueryContext.getInstance().setJPAQuery(JPAQuery);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy