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

com.github.ollgei.spring.boot.autoconfigure.jdbc.JdbcTemplateConfiguration Maven / Gradle / Ivy

The newest version!
package com.github.ollgei.spring.boot.autoconfigure.jdbc;

import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.transaction.PlatformTransactionManager;

import lombok.Builder;
import lombok.Data;
import lombok.NonNull;

/**
 * jdbcTemplate.
 *
 * @author ollgei
 * @since 1.0.0
 */
@Data
@Builder
public class JdbcTemplateConfiguration {
    @NonNull
    private final JdbcTemplate jdbcTemplate;

    private final PlatformTransactionManager transactionManager;

    @NonNull
    private final String tableName;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy