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

io.github.perplexhub.rsql.RSQLConfig Maven / Gradle / Ivy

There is a newer version: 6.0.23
Show newest version
package io.github.perplexhub.rsql;

import jakarta.persistence.EntityManager;

import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class RSQLConfig {

	@Bean
	public RSQLSupport rsqlSupport(ApplicationContext applicationContext) {
		return new RSQLSupport(applicationContext.getBeansOfType(EntityManager.class));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy