/**
|
* Copyright © 2015-2020 <a href="http://www.jeeplus.org/">JeePlus</a> All rights reserved.
|
*/
|
package com.jeeplus.common.persistence.annotation;
|
|
import java.lang.annotation.Documented;
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
|
import org.springframework.stereotype.Component;
|
|
/**
|
* 标识MyBatis的DAO,方便{@link org.mybatis.spring.mapper.MapperScannerConfigurer}的扫描。
|
* @author thinkgem
|
* @version 2013-8-28
|
*/
|
@Retention(RetentionPolicy.RUNTIME)
|
@Target(ElementType.TYPE)
|
@Documented
|
@Component
|
public @interface MyBatisDao {
|
|
/**
|
* The value may indicate a suggestion for a logical component name,
|
* to be turned into a Spring bean in case of an autodetected component.
|
* @return the suggested component name, if any
|
*/
|
String value() default "";
|
|
}
|