请教Spring中@Repository注解的问题
@Repository("businessDao")
public class BusinessDao extends BasicDao implements IBusinessDao {
.....
}
在MyEclipse中@Repository("businessDao")这里的businessDao始终划红线,并提示:
The attribute value is undefined for the annotation type Repository
请问这是为什么呢?
------解决方案--------------------Java code
@Repository(value = "businessDao")
------解决方案--------------------
Java code
import org.springframework.stereotype.Repository;
------解决方案--------------------
嗯,这个注解在org.springframework.stereotype.Repository
楼主检查下是否引用错了包,再看看spring包里是否有这个类,如果没有,就用个版本高点的包。
------解决方案--------------------
------解决方案--------------------
换高版本的JDK试试