32 lines
896 B
Java
32 lines
896 B
Java
/**
|
|
* Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
|
|
*/
|
|
package com.nis.web.dao;
|
|
|
|
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 "";
|
|
|
|
} |