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

io.github.dengchen2020.jdbc.config.JdbcAutoConfiguration Maven / Gradle / Ivy

package io.github.dengchen2020.jdbc.config;

import io.github.dengchen2020.jdbc.event.listener.JdbcOverJpaEventListener;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * jdbc自动配置
 * @author dengchen
 * @since 2024/6/20
 */
@Configuration(proxyBeanMethods = false)
public class JdbcAutoConfiguration {

    @Bean
    public JdbcOverJpaEventListener jdbcEventListener(){
        return new JdbcOverJpaEventListener();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy