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

io.microsphere.spring.test.jdbc.embedded.EnableEmbeddedDatabase Maven / Gradle / Ivy

There is a newer version: 0.0.3
Show newest version
package io.microsphere.spring.test.jdbc.embedded;

import org.springframework.context.annotation.Import;

import javax.sql.DataSource;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Enable an embedded database
 *
 * @author Mercy
 * @since 1.0.0
 */
@Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Import(EmbeddedDataBaseBeanDefinitionRegistrar.class)
@Repeatable(EnableEmbeddedDatabases.class)
public @interface EnableEmbeddedDatabase {

    /**
     * @return Embedded Database Type, SQLite as default
     */
    EmbeddedDatabaseType type() default EmbeddedDatabaseType.SQLITE;

    /**
     * JDBC connection port
     *
     * @return if not specified port, return -1
     */
    int port() default -1;

    /**
     * @return {@link DataSource} Bean Name
     */
    String dataSource();

    /**
     * @return Primary Bean or not
     */
    boolean primary() default false;

    /**
     * @return JDBC Properties Properties, Key-value
     */
    String[] properties() default {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy