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

com.github.andyshao.neo4j.spring.annotation.EnableNeo4jDao Maven / Gradle / Ivy

There is a newer version: 3.0.0.RELEASE
Show newest version
package com.github.andyshao.neo4j.spring.annotation;

import com.github.andyshao.neo4j.spring.config.DefaultNeo4jConfiguration;
import org.springframework.context.annotation.Import;

import java.lang.annotation.*;

/**
 * Title: 
* Description:
* Copyright: Copyright(c) 2020/8/28 * Encoding: UNIX UTF-8 * * @author Andy.Shao */ @Deprecated(since = "2.0.0.RELEASE") @Inherited @Documented @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Import({DefaultNeo4jConfiguration.class}) public @interface EnableNeo4jDao { Class[] packageClasses(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy